riktig path til docker context #3
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: deploy nais job konsistensavstemming | |
on: push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: jobs/konsistensavstemming | |
permissions: | |
contents: "read" | |
id-token: "write" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Bygg med maven | |
env: | |
SONAR_PROJECTKEY: ${{ secrets.SONAR_PROJECTKEY }} | |
SONAR_LOGIN: ${{ secrets.SONAR_LOGIN }} | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn -Dmaven.test.skip=true -e -B --no-transfer-progress package verify --settings ../../.m2/maven-settings.xml --file pom.xml | |
- uses: nais/docker-build-push@v0 | |
id: docker-push | |
with: | |
team: teamfamilie | |
push_image: true | |
dockerfile: Dockerfile | |
docker_context: jobs/konsistensavstemming/ | |
image_suffix: ${{ github.workflow }} | |
tag: ${{ env.GITHUB_REF_SLUG }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
byosbom: target/bom.json | |
- name: Deploy til dev-gcp | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
APIKEY: ${{ secrets.GITHUB_ACCESS_TOKEN }} | |
CLUSTER: dev-gcp | |
RESOURCE: deploy/dev.yaml | |
VAR: image=${{ steps.docker-push.outputs.image }} |