Fix bug where ka query param was not honored #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy (dev -> e2e -> prod) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy_to_dev: | |
name: Dev | |
permissions: | |
contents: write | |
id-token: write | |
uses: ./.github/workflows/deploy-to-dev.yaml | |
secrets: | |
NAIS_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
READER_TOKEN: ${{ secrets.READER_TOKEN }} | |
deploy_to_prod: | |
name: Prod | |
permissions: | |
contents: write | |
id-token: write | |
needs: deploy_to_dev | |
uses: ./.github/workflows/deploy-to-prod.yaml | |
secrets: | |
NAIS_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} |