Bump Kotlin JVM -> 2.0.21 #19
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: Bygge Spannerish og deploye til dev | |
on: | |
push: | |
paths-ignore: | |
- 'backend/**' | |
branches: | |
- master | |
jobs: | |
build: | |
name: build docker image | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21.x' | |
cache: 'gradle' | |
- name: test and build | |
run: ./gradlew build -settings-file spannerish.settings.gradle.kts | |
env: | |
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }} | |
- name: build docker image | |
uses: nais/docker-build-push@v0 | |
id: docker-build-push | |
with: | |
team: tbd | |
tag: latest | |
dockerfile: Dockerfile | |
docker_context: filbackend | |
image_suffix: ish | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
outputs: | |
image: ${{ steps.docker-build-push.outputs.image }} | |
deployDev: | |
name: deploy to dev | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: dev-gcp | |
RESOURCE: deploy/spannerish.yml | |
IMAGE: ${{ needs.build.outputs.image }} |