chore: Exception -> ValueError #22
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 to production & demo | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build-and-deploy-production: | |
name: Deploy to prod on merge to main branch | |
uses: Informasjonsforvaltning/workflows/.github/workflows/build-deploy-nox.yaml@main | |
with: | |
app_name: fdk-organization-bff | |
python_version: '3.9' | |
python_architecture: x64 | |
environment: prod | |
cluster: digdir-fdk-prod | |
nox_image: True | |
secrets: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GCP_SA_DIGDIR_FDK_GCR_KEY: ${{ secrets.GCP_SA_DIGDIR_FDK_GCR_KEY }} | |
DIGDIR_FDK_AUTODEPLOY: ${{ secrets.DIGDIR_FDK_PROD_AUTODEPLOY }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
deploy-to-demo: | |
needs: build-and-deploy-production | |
name: Deploy to demo if prod-deploy is successful | |
uses: Informasjonsforvaltning/workflows/.github/workflows/deploy.yaml@main | |
with: | |
app_name: fdk-organization-bff | |
environment: demo | |
cluster: digdir-fdk-dev | |
secrets: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DIGDIR_FDK_AUTODEPLOY: ${{ secrets.DIGDIR_FDK_DEV_AUTODEPLOY }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |