Dev next1 kodeverk fiks bugs (#6741) #33
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: Build and deploy dev-next1 | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '.gitignore' | |
- 'CODEOWNERS' | |
branches: | |
- dev-next1 | |
jobs: | |
build-deploy: | |
name: Build and deploy Docker image | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
env: | |
CLUSTER: dev-fss | |
steps: | |
- name: Hente kode | |
uses: actions/checkout@v4 | |
- name: Setup + Install | |
uses: ./.github/actions/setup-install | |
with: | |
npmAuthToken: ${{ secrets.READER_TOKEN }} | |
- name: Bygge dist | |
run: yarn build | |
- name: Build and push to docker registry | |
uses: nais/docker-build-push@v0 | |
id: docker-push | |
with: | |
tag: 'dev-next1' | |
team: k9saksbehandling | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
- name: Deploy to nais | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: ${{ env.CLUSTER }} | |
RESOURCE: deploy/${{ env.CLUSTER }}-k9saksbehandling.yml | |
VARS: deploy/dev-next1.yaml | |
VAR: image=${{ steps.docker-push.outputs.image }} |