Ruller tilbake typer for react, siden de brekker linting, tar midlert… #99
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@node-20 | |
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@node-20 | |
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 | |
imageSuffix: -prod-gcp | |
vars: .nais/prod.yaml |