Logg ut custom wonderwall når man logger ut fra dekoratøren #32
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: "Build and deploy to prod-gcp" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
deploy-gcp: | |
strategy: | |
matrix: | |
include: | |
- 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 }} | |
LOGIN_SESSION_API_URL="https://www.nav.no/sosialhjelp/soknad/oauth2/session" | |
LOGOUT_URL="https://www.nav.no/sosialhjelp/soknad/oauth2/logout" | |
build_secrets: | | |
NODE_AUTH_TOKEN=${{ secrets.READER_TOKEN }} | |
- name: "Deploy to ${{ matrix.environment }}" | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
RESOURCE: .nais/app.yaml | |
CLUSTER: ${{ matrix.cluster }} | |
REF: ${{ github.sha }} | |
PRINT_PAYLOAD: true | |
IMAGE: ${{ steps.docker-build-push.outputs.image }} | |
VARS: .nais/vars/${{ matrix.environment }}.yaml |