-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (68 loc) · 2.11 KB
/
deploy-backend.yaml
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
71
72
73
74
75
76
77
78
name: "Backend: Build and deploy"
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- '**/**.md'
- '.gitignore'
- 'LICENCE'
env:
IMAGE_NAME: "ghcr.io/${{ github.repository }}/backend:${{ github.sha }}"
NAIS_MANIFEST: "backend.yaml"
permissions:
id-token: write
contents: read
jobs:
build-and-push:
name: Build, push emottak-test-client-backend image
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: "Cache gradle wrapper"
uses: actions/cache@v3
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: "Cache Gradle packages"
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-cache-${{ hashFiles('build.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-cache-
- name: "Build backend"
run: ./gradlew buildBackend
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "Login to GitHub Packages Docker Registry"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and push backend docker image"
run: |
docker build --build-arg GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} --tag ${{ env.IMAGE_NAME }} -f backend/Dockerfile --pull backend
docker push ${{ env.IMAGE_NAME }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy-to-dev:
name: Deploy emottak-test-client-backend to dev
needs: build-and-push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Deploy backend to dev
uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: dev-fss
RESOURCE: .nais/backend.yaml
VAR: image=${{env.IMAGE_NAME}}