Skip to content

Commit

Permalink
Pluralize deploy job names.
Browse files Browse the repository at this point in the history
  • Loading branch information
fergmac committed Nov 26, 2024
1 parent 5a964d6 commit 443f4ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
id: pr
uses: bcgov-nr/[email protected]

deploy-test:
deploys-test:
name: TEST Deploys (${{ needs.init.outputs.pr }})
needs: [init]
secrets: inherit
Expand All @@ -43,9 +43,9 @@ jobs:
tag: ${{ needs.init.outputs.pr }}
target: test

deploy-prod:
deploys-prod:
name: Deploy (prod)
needs: [init, deploy-test]
needs: [init, deploys-test]
secrets: inherit
uses: ./.github/workflows/.deploy.yml
with:
Expand All @@ -55,7 +55,7 @@ jobs:

promote:
name: Promote Images
needs: [init, deploy-prod]
needs: [init, deploys-prod]
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 443f4ac

Please sign in to comment.