Logger #205
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/**' | |
jobs: | |
build: | |
name: Build and publish Docker image | |
runs-on: ubuntu-latest | |
permissions: # Sjekk https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- uses: gradle/wrapper-validation-action@v3.5.0 | |
- uses: gradle/gradle-build-action@v3.5.0 | |
env: | |
# Eksluder test dependencies | |
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: compileClasspath|runtimeClasspath | |
with: | |
gradle-version: wrapper | |
dependency-graph: generate-and-submit | |
arguments: --configuration-cache build installDist | |
- name: docker-build-push | |
uses: nais/docker-build-push@v0 | |
if: github.ref == 'refs/heads/main' | |
id: docker-build-push | |
with: | |
team: teamdagpenger | |
push_image: true # optional, default true | |
tag: ${{ github.sha }} | |
dockerfile: Dockerfile # optional, default Dockerfile | |
docker_context: . # 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.1.7 | |
- uses: nais/deploy/actions/deploy@v2 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
CLUSTER: dev-gcp | |
RESOURCE: nais/nais.yaml | |
VAR: image=${{ needs.build.outputs.image }} | |
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.1.7 | |
- uses: nais/deploy/actions/deploy@v2 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
CLUSTER: prod-gcp | |
RESOURCE: nais/nais.yaml | |
VAR: image=${{ needs.build.outputs.image }} | |
VARS: nais/prod/vars.yaml | |
PRINT_PAYLOAD: true |