mirror of
https://github.com/containers/podman.git
synced 2025-05-17 06:59:07 +08:00
FCOS+podman-next: correct GHA conditional syntax
Ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-contexts [skip-ci] Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
This commit is contained in:
4
.github/workflows/fcos-podman-next-build.yml
vendored
4
.github/workflows/fcos-podman-next-build.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
|
||||
- name: Set up wait-for-copr
|
||||
# Do not run on scheduled nightly builds
|
||||
if: ${{ github.event_name }} != 'schedule'
|
||||
if: ${{ github.event_name != 'schedule' }}
|
||||
run: |
|
||||
pip3 install git+https://github.com/packit/wait-for-copr.git@main
|
||||
|
||||
@ -41,7 +41,7 @@ jobs:
|
||||
|
||||
- name: Wait for successful podman-next build with the latest commit
|
||||
# Do not run on scheduled nightly builds
|
||||
if: ${{ github.event_name }} != 'schedule'
|
||||
if: ${{ github.event_name != 'schedule' }}
|
||||
run: |
|
||||
# TODO: add this in the Containerfile itself or as a --build-arg
|
||||
wait-for-copr --owner ${{ env.COPR_OWNER }} --project ${{ env.COPR_PROJECT }} podman ${{ env.SHORT_SHA }}
|
||||
|
Reference in New Issue
Block a user