Skip to content

Commit

Permalink
Fix job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Mar 10, 2024
1 parent c1ff6cd commit 219f204
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:

deploy-sandbox:
name: Deploy
needs: [deploy-test]
needs: [docker, deploy-test]
uses: ./.github/workflows/deploy.yml
if: ${{ github.ref == 'refs/heads/main' }}
concurrency:
Expand All @@ -175,7 +175,7 @@ jobs:

deploy-production:
name: Deploy
needs: [deploy-sandbox]
needs: [docker, deploy-sandbox]
uses: ./.github/workflows/deploy.yml
if: ${{ github.ref == 'refs/heads/main' }}
concurrency:
Expand Down

0 comments on commit 219f204

Please sign in to comment.