Legge på at behovssvar krever '@final=true' for å spille sammen med d… #774
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 and deploy | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
build: | |
name: Build and publish Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- uses: gradle/[email protected] | |
- uses: gradle/[email protected] | |
env: | |
# Eksluder test dependencies | |
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: compileClasspath|runtimeClasspath | |
with: | |
gradle-version: wrapper | |
dependency-graph: generate-and-submit | |
arguments: --configuration-cache build | |
- name: docker-build-push | |
uses: nais/docker-build-push@v0 | |
id: docker-build-push | |
with: | |
team: teamdagpenger | |
tag: ${{ github.sha }} | |
dockerfile: mediator/Dockerfile # optional, default Dockerfile | |
docker_context: mediator # optional, default . | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
outputs: | |
image: ${{ steps.docker-build-push.outputs.image }} | |
deploy-dev: | |
name: Deploy to dev | |
needs: [build] | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
environment: dev-gcp | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: dev-gcp | |
RESOURCE: .nais/nais.yaml,.nais/unleash.yaml | |
VAR: image=${{ needs.build.outputs.image }},unleashEnvironment=development | |
VARS: .nais/dev-vars.yaml | |
PRINT_PAYLOAD: true | |
deploy-prod: | |
name: Deploy to Production | |
needs: [build] | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
environment: prod-gcp | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: prod-gcp | |
RESOURCE: .nais/nais.yaml,.nais/unleash.yaml | |
VAR: image=${{ needs.build.outputs.image }},unleashEnvironment=production | |
VARS: .nais/prod-vars.yaml | |
PRINT_PAYLOAD: true |