-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (53 loc) · 1.4 KB
/
master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: master
on:
push:
paths-ignore:
- 'filbackend/**'
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
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
dockerfile: Dockerfile
docker_context: backend
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
- uses: nais/deploy/actions/deploy@v2
env:
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }}
CLUSTER: ${{ matrix.cluster }}
RESOURCE: deploy/${{ matrix.cluster }}.yml
IMAGE: ${{ needs.build.outputs.image }}