-
Notifications
You must be signed in to change notification settings - Fork 2
122 lines (104 loc) · 4.43 KB
/
deploy.yml
File metadata and controls
122 lines (104 loc) · 4.43 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: Deploy
env:
registry: "ghcr.io"
on:
workflow_run:
workflows: ["Version Bump"]
types:
- completed
workflow_dispatch:
concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
packages: write
jobs:
docker:
if: ${{ github.event.repository.fork == false && (github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success') }}
runs-on: ubuntu-latest
steps:
# checkout the repository at the latest commit
- name: checkout repository
uses: actions/checkout@v6
- name: set start timestamp
id: start-time
run: echo "value=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
- name: Send slack start message
uses: slackapi/slack-github-action@v2.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
channel: ${{ secrets.SLACK_CHANNEL_ID }}
text: "Starting <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|deployment> to GHCR at ${{ steps.start-time.outputs.value }}"
# setup node
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
# install dependencies
- name: install dependencies
run: npm ci
# set build timestamp
- name: set build timestamp
id: build-time
run: echo "value=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
# get backend version
- name: get backend version
id: backend-version
uses: martinbeentjes/npm-get-version-action@v1.1.0
with:
path: ./
# print version
- name: print backend version
run: echo "building server image with version ${{ steps.backend-version.outputs.current-version }}"
# setup qemu for multi-platform builds
- name: set up qemu
uses: docker/setup-qemu-action@v3
# setup docker buildx
- name: set up docker buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug
# login to GHCR
- name: login to ghcr
uses: docker/login-action@v3
with:
registry: ${{ env.registry }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
logout: false
# build and push server image
- name: build and push server image
uses: docker/build-push-action@v6
with:
context: "."
file: ./src/server/Dockerfile
platforms: linux/amd64
push: true
tags: |
${{ env.registry }}/${{ github.repository_owner }}/bug:${{ steps.backend-version.outputs.current-version }}
${{ env.registry }}/${{ github.repository_owner }}/bug:latest
labels: |
author=${{ github.actor }}
version=${{ steps.backend-version.outputs.current-version }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
uk.co.bbc.bug.build.timestamp=${{ steps.build-time.outputs.value }}
uk.co.bbc.bug.build.number=${{ github.run_number }}
uk.co.bbc.bug.build.commit=${{ github.sha }}
- name: set end timestamp
id: end-time
if: ${{ always() }}
run: echo "value=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
- name: Send slack end message
if: ${{ always() }}
uses: slackapi/slack-github-action@v2.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
payload: |
channel: ${{ secrets.SLACK_CHANNEL_ID }}
text: "Deployment to GHCR finished with status ${{ job.status }} at ${{ steps.end-time.outputs.value }}"