-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (67 loc) · 1.75 KB
/
slakter.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: build slakter
on:
push:
branches:
- main
paths:
- 'slakter/**'
- 'build.gradle.kts'
- 'settings.gradle.kts'
- '.github/workflows/slakter.yml'
- '.nais/slakter.yml'
- '.nais/slakter-dev.json'
- '.nais/slakter-prod.json'
jobs:
build:
name: build
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: gradle
run: ./gradlew :slakter:build
- name: build docker image
uses: nais/docker-build-push@v0
id: docker-build-push
with:
team: tbd
image_suffix: slakter
docker_context: slakter
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: .nais/slakter.yml
VARS: .nais/slakter-dev.json
IMAGE: ${{ needs.build.outputs.image }}
deployProd:
name: deploy to prod
needs: build
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: prod-gcp
RESOURCE: .nais/slakter.yml
VARS: .nais/slakter-prod.json
IMAGE: ${{ needs.build.outputs.image }}