Merge pull request #510 from navikt/dependabot/maven/all-dependencies… #191
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, og deploy (dev og prod) | |
on: | |
push: | |
branches: | |
- 'main' | |
permissions: | |
contents: "read" | |
id-token: "write" | |
jobs: | |
build-and-deploy: | |
name: Build, push til docker, og deploy til GCP (dev) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Bygg med maven | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn -B --no-transfer-progress package --settings .m2/maven-settings.xml --file pom.xml | |
- name: Bygg og push docker image | |
uses: nais/docker-build-push@v0 | |
id: docker-push | |
with: | |
team: teamfamilie | |
tag: latest | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
byosbom: target/classes/META-INF/sbom/application.cdx.json | |
- name: Deploy til GCP (dev) | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: dev-gcp | |
RESOURCE: .deploy/nais-dev.yaml | |
VAR: image=${{ steps.docker-push.outputs.image }} | |
- name: Deploy til GCP (prod) | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: prod-gcp | |
RESOURCE: .deploy/nais-prod.yaml | |
VAR: image=${{ steps.docker-push.outputs.image }} |