This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
generated from nais/hello-nais
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (64 loc) · 1.84 KB
/
deploy.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
name: Build, push, and deploy
on:
push:
branches:
- main
- dev/*
jobs:
build:
name: Build and push Docker container
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
outputs:
image: ${{ steps.docker-build-push.outputs.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: 21
distribution: temurin
cache: gradle
- uses: gradle/gradle-build-action@v2
env:
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }}
with:
arguments: build
- name: Push docker image to GAR
uses: nais/docker-build-push@v0
id: docker-build-push
with:
team: paw
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} # Provided as Organization Secret
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} # Provided as Organization Variable
deploy-til-dev:
name: Deploy to dev-gcp
permissions:
contents: read
id-token: write
needs: build
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/dev')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: dev-gcp
RESOURCE: nais/nais-dev.yaml
VAR: image=${{ needs.build.outputs.image }}
deploy-til-prod:
name: Deploy to prod-gcp
permissions:
contents: read
id-token: write
needs: [deploy-til-dev, build]
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: prod-gcp
RESOURCE: nais/nais-prod.yaml
VAR: image=${{ needs.build.outputs.image }}