Build-Deploy dev #2545
Workflow file for this run
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-Deploy dev | |
on: | |
workflow_dispatch: | |
env: | |
IMAGE: ghcr.io/navikt/familie-ef-sak:${{ github.sha }} | |
permissions: | |
contents: "read" | |
id-token: "write" | |
jobs: | |
build: | |
name: Build, push and deploy to dev-gcp | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
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 | |
- uses: nais/docker-build-push@v0 | |
id: docker-push | |
with: | |
team: teamfamilie | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
byosbom: target/classes/META-INF/sbom/application.cdx.json | |
outputs: | |
image: ${{ steps.docker-push.outputs.image }} | |
deploy: | |
name: Deploy to GCP | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: dev-gcp | |
RESOURCE: .deploy/preprod.yaml | |
IMAGE: ${{ needs.build.outputs.image }} |