Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
ci: fix permission check issue
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywang committed Jan 28, 2024
1 parent a1b4d51 commit c0de3c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: checkout code
if: steps.user_permission.require-result == 'true'
if: steps.user_permission.check-result == 'true'
uses: actions/checkout@v3

- name: Build container
if: steps.user_permission.require-result == 'true'
if: steps.user_permission.check-result == 'true'
run: |
sudo apt-get install -y podman
podman build -t bootc-test-runner:x86_64 -f tools/Dockerfile tools
Expand Down

0 comments on commit c0de3c7

Please sign in to comment.