Skip to content

Commit

Permalink
fix: avoid parallel images update (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed Jun 28, 2024
2 parents dd117d6 + d3b3058 commit 2199b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fileserver-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
update-production-image:
if: github.ref_name == 'main'
name: Update production image
needs: upload-production-image
needs: [upload-production-image, update-stage-image]
runs-on: ubuntu-latest
environment: production
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flowforge-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
update-production-image:
if: github.ref_name == 'main'
name: Update production image
needs: upload-production-image
needs: [upload-production-image, update-stage-image]
runs-on: ubuntu-latest
environment: production
steps:
Expand Down

0 comments on commit 2199b81

Please sign in to comment.