bruker naisful-app som ktor-server #266
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: master | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17.x' | |
cache: 'gradle' | |
- name: test and build | |
run: ./gradlew test build | |
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 | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
outputs: | |
image: ${{ steps.docker-build-push.outputs.image }} | |
deploy: | |
name: deploy | |
needs: build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
cluster: | |
- dev-gcp | |
- prod-gcp | |
steps: | |
- uses: actions/checkout@v4 | |
- name: deploy | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
RESOURCE: deploy/${{ matrix.cluster }}.yml | |
IMAGE: ${{ needs.build.outputs.image }} | |
CLUSTER: ${{ matrix.cluster }} |