-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 1.15 KB
/
deploy-demo.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Deploy to demo
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-deploy-demo:
name: Call reusable workflow on push to main branch
uses: Informasjonsforvaltning/workflows/.github/workflows/build-deploy.yaml@main
with:
app_name: fdk-nginx-altinn-proxy-mock
environment: demo
cluster: digdir-fdk-dev
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_DEV_AUTODEPLOY }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# Currently not needed, uncomment if deploy to staging is necessary
# deploy-to-staging:
# needs: build-and-deploy-demo
# name: Deploy to staging if demo-deploy is successful
# uses: Informasjonsforvaltning/workflows/.github/workflows/deploy.yaml@main
# with:
# app_name: dataset-catalog-gui
# environment: staging
# 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 }}