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

ci: fix bool value issue #5

Merged
merged 1 commit into from
Jan 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.check-result == 'true'
if: steps.user_permission.require-result == true
uses: actions/checkout@v3

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