mirror of
https://github.com/containers/podman.git
synced 2025-06-26 04:46:57 +08:00
Merge pull request #20153 from lsm5/fcos-podman-next-followup-3
[skip-ci] [CI:BUILD] FCOS+podman-next: correct GHA conditional syntax
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
|
- name: Set up wait-for-copr
|
||||||
# Do not run on scheduled nightly builds
|
# Do not run on scheduled nightly builds
|
||||||
if: ${{ github.event_name }} != 'schedule'
|
if: ${{ github.event_name != 'schedule' }}
|
||||||
run: |
|
run: |
|
||||||
pip3 install git+https://github.com/packit/wait-for-copr.git@main
|
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
|
- name: Wait for successful podman-next build with the latest commit
|
||||||
# Do not run on scheduled nightly builds
|
# Do not run on scheduled nightly builds
|
||||||
if: ${{ github.event_name }} != 'schedule'
|
if: ${{ github.event_name != 'schedule' }}
|
||||||
run: |
|
run: |
|
||||||
# TODO: add this in the Containerfile itself or as a --build-arg
|
# 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 }}
|
wait-for-copr --owner ${{ env.COPR_OWNER }} --project ${{ env.COPR_PROJECT }} podman ${{ env.SHORT_SHA }}
|
||||||
|
Reference in New Issue
Block a user