Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/manual-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
permissions:
contents: read
id-token: write
uses: entur/gha-helm/.github/workflows/deploy.yml@v1.7.0
uses: entur/gha-helm/.github/workflows/deploy.yml@v2.0.0
with:
environment: ${{ inputs.environment }}
git_ref: ${{ inputs.tag }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ jobs:
image_name: nuska

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/main' && 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 @@ -111,7 +111,7 @@ jobs:
deploy-tst:
if: ${{ github.ref == 'refs/heads/main' }}
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 @@ -135,7 +135,7 @@ jobs:
deploy-prd:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [ docker-push, approval-prd ]
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