Skip to content

Commit 1a02343

Browse files
committed
Fix needs declaration
1 parent d8edb1e commit 1a02343

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ jobs:
5757

5858
deploy-prod:
5959
name: Deploy application to prod gcp and create release
60+
needs: [test-build-and-push, deploy-dev]
6061
permissions:
6162
contents: write
6263
packages: write
6364
id-token: write
64-
needs: deploy-dev
6565
runs-on: ubuntu-latest
6666
if: github.ref == 'refs/heads/main'
6767
steps:
@@ -112,7 +112,7 @@ jobs:
112112

113113
deploy-prod-fss:
114114
name: Deploy application to prod fss
115-
needs: deploy-dev-fss
115+
needs: [test-build-and-push,deploy-dev-fss]
116116
runs-on: ubuntu-latest
117117
permissions:
118118
id-token: write

0 commit comments

Comments
 (0)