-
Notifications
You must be signed in to change notification settings - Fork 9
81 lines (71 loc) · 2.07 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
79
80
name: 'deploy: backend'
on:
push:
branches:
- 'main'
paths:
- '.github/workflows/deploy-backend.yaml'
- 'apps/backend/**'
workflow_dispatch:
env:
IMAGE: ghcr.io/${{ github.repository }}/teambackend:${{ github.sha }}
defaults:
run:
working-directory: apps/backend
jobs:
build:
name: Backend - build and push docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build
run: mvn compile --batch-mode
- name: Test and Package
run: mvn package --batch-mode
- name: Docker login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker container
uses: docker/build-push-action@v3
with:
context: apps/backend
push: true
tags: ${{ env.IMAGE }}
build-args: JAR_PATH=target/app.jar
deploy-preprod:
name: Backend - deploy Dev FSS
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nais/deploy/actions/deploy@v1
env:
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }}
CLUSTER: dev-fss
RESOURCE: apps/backend/nais/backend-fss.yaml
VARS: apps/backend/nais/backend-dev-fss-vars.yaml
deploy-prod:
name: Backend - deploy Prod FSS
needs: build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nais/deploy/actions/deploy@v1
env:
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }}
CLUSTER: prod-fss
RESOURCE: apps/backend/nais/backend-fss.yaml
VARS: apps/backend/nais/backend-prod-fss-vars.yaml