chore: hide server info #8
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 and 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.yaml@main | |
with: | |
app_name: fdk-nginx-registration | |
environment: prod | |
cluster: digdir-fdk-prod | |
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-nginx-registration | |
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 }} |