🚑 Legger tilbake fil som ikke skulle ha vært slettet #31
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: Bygg og deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
jobs: | |
buildDev: | |
uses: navikt/aap-workflows/.github/workflows/frontend-next-build.yml@main | |
permissions: | |
contents: read | |
id-token: write | |
packages: write | |
secrets: inherit | |
with: | |
cluster: dev-gcp | |
appname: 'aap-innsyn' | |
playwright: false | |
cdn: true | |
buildProd: | |
uses: navikt/aap-workflows/.github/workflows/frontend-next-build.yml@main | |
permissions: | |
contents: read | |
id-token: write | |
packages: write | |
if: github.ref == 'refs/heads/main' | |
secrets: inherit | |
with: | |
cluster: prod-gcp | |
appname: 'aap-innsyn' | |
playwright: false | |
cdn: true | |
deployDev: | |
needs: buildDev | |
uses: navikt/aap-workflows/.github/workflows/deploy.yml@main | |
permissions: | |
contents: read | |
id-token: write | |
secrets: inherit | |
with: | |
cluster: dev-gcp | |
manifest: .nais/nais.yaml | |
imageSuffix: -dev-gcp | |
vars: .nais/dev.yaml | |
deployProd: | |
needs: buildProd | |
uses: navikt/aap-workflows/.github/workflows/deploy.yml@main | |
permissions: | |
contents: read | |
id-token: write | |
if: github.ref == 'refs/heads/main' | |
secrets: inherit | |
with: | |
cluster: prod-gcp | |
manifest: .nais/nais.yaml,.nais/prod-alerts.yaml | |
imageSuffix: -prod-gcp | |
vars: .nais/prod.yaml |