Skip to content

Commit

Permalink
🐛 Make update-manifest job wait for dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Montleon <[email protected]>
  • Loading branch information
jmontleon committed Jun 14, 2024
1 parent 9f145f6 commit d2438af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/multi-arch-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@main
- name: Build static-report
run: |
docker login -u $env:USER -p $env:TOKEN
docker login quay.io -u $env:USER -p $env:TOKEN
docker build -f ./Dockerfile.windows -t quay.io/konveyor/static-report:ltsc2022-$env:TAG .
docker push quay.io/konveyor/static-report:ltsc2022-$env:TAG
env:
Expand All @@ -47,6 +47,9 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}

update-manifest:
needs:
- linux-image-build
- windows-image-build
runs-on: ubuntu-latest
steps:
- name: update manifest
Expand Down

0 comments on commit d2438af

Please sign in to comment.