-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (80 loc) · 2.54 KB
/
docker-build-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: Build and Deploy Backend
on:
workflow_dispatch: {}
push:
branches:
- main
paths:
- "backend/**"
- "Dockerfile.backend"
pull_request:
branches:
- main
paths:
- "backend/**"
- "Dockerfile.backend"
env:
REGISTRY: ghcr.io
IMAGE_NAME: sintef/ctontoapi-backend
GITOPS_REPOSITORY: SINTEF/infrastructure-as-code-sustainable-communication-technologies
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for main image
id: meta-main
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
- name: Build and push Docker main image
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile.backend
push: true
tags: ${{ steps.meta-main.outputs.tags }}
labels: ${{ steps.meta-main.outputs.labels }}
deploy:
# Only deploy the latest version
if: contains(github.ref, 'heads')
runs-on: ubuntu-latest
needs:
- build-and-push-image
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: ${{ env.GITOPS_REPOSITORY }}
ssh-key: ${{secrets.GITOPS_REPOSITORY_SSH_KEY}}
- name: Patch version
run: |
yq --inplace '.ctontoapi-backend.image.tag |= "sha-'$(git rev-parse --short $GITHUB_SHA)'"' deployments/ctontoapi/image-tags.yaml
- name: Configure Machine Acount for Git
run: |
echo "${{ secrets.GITOPS_PGP_PRIVATE_KEY }}" | gpg --import
git config user.name "SINTEF SCT CI Machine Account"
git config user.email "114478573+sintef-sct-ci-machine-account@users.noreply.github.com"
git config user.signingkey 5A8DEB988A15EBB5
git config commit.gpgsign true
- name: Commit and push
run: |
git commit -S -am "GitOps update $(git rev-parse --short $GITHUB_SHA) for CTOntoAPI backend"
git pull --rebase
git push