Fikser URLer til backend og monitorering #1
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
# Denne filen vil erstatte build_prod, build_deploy_mock, etc. | |
name: "Deploy after push to main" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
deploy-gcp: | |
strategy: | |
matrix: | |
include: | |
- environment: preprod | |
cluster: dev-gcp | |
- environment: mock | |
cluster: dev-gcp | |
#- environment: prod | |
# cluster: prod-gcp | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and push docker image to GAR | |
uses: nais/docker-build-push@v0 | |
id: docker-build-push | |
with: | |
team: teamdigisos | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
image_suffix: ${{ matrix.environment }} | |
build_args: | | |
DIGISOS_ENV=${{ matrix.environment }} | |
build_secrets: | | |
NODE_AUTH_TOKEN=${{ secrets.READER_TOKEN }} | |
- name: "Deploy to ${{ matrix.environment }}" | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
RESOURCE: .nais/nais.yaml | |
CLUSTER: ${{ matrix.cluster }} | |
REF: ${{ github.sha }} | |
PRINT_PAYLOAD: true | |
IMAGE: ${{ steps.docker-build-push.outputs.image }} | |
VARS: .nais/vars/${{ matrix.environment }}.yaml |