Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ jobs:
uses: entur/gha-docker/.github/workflows/push.yml@v1.11.0

helm-lint:
uses: entur/gha-helm/.github/workflows/lint.yml@v1.7.0
uses: entur/gha-helm/.github/workflows/lint.yml@v2.0.0
with:
environment: dev


deploy-dev:
if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request' }}
needs: [ helm-lint, docker-push ]
uses: entur/gha-helm/.github/workflows/deploy.yml@v1.7.0
uses: entur/gha-helm/.github/workflows/deploy.yml@v2.0.0
with:
environment: dev
image: ${{ needs.docker-push.outputs.image_name }}:${{ needs.docker-push.outputs.image_tag}}
Expand All @@ -145,7 +145,7 @@ jobs:
deploy-tst:
if: ${{ github.ref == 'refs/heads/master' }}
needs: [ docker-push, approval-tst ]
uses: entur/gha-helm/.github/workflows/deploy.yml@v1.7.0
uses: entur/gha-helm/.github/workflows/deploy.yml@v2.0.0
with:
environment: tst
image: ${{ needs.docker-push.outputs.image_name }}:${{ needs.docker-push.outputs.image_tag}}
Expand All @@ -168,7 +168,7 @@ jobs:
deploy-prd:
if: ${{ github.ref == 'refs/heads/master' }}
needs: [ docker-push, approval-prd, openapi-publish ]
uses: entur/gha-helm/.github/workflows/deploy.yml@v1.7.0
uses: entur/gha-helm/.github/workflows/deploy.yml@v2.0.0
with:
environment: prd
image: ${{ needs.docker-push.outputs.image_name }}:${{ needs.docker-push.outputs.image_tag}}
Expand Down
Loading