-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (81 loc) · 2.5 KB
/
build-deploy-on-tag.yml
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
name: Release & deploy server container (tag)
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-22.04
name: Build container
strategy:
matrix:
container: [server, nginx]
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Get version
id: version
if: matrix.container == 'server'
uses: ./.github/actions/version
-
name: Set variables
shell: bash
if: matrix.container == 'server'
run: |
DATE=$(date +%Y%m%d)
YEAR=$(date +%Y)
# Only build on amd64 around the event (faster)
LABOR_DAY=$(date -d "${YEAR}-09-01 +$(( (8 - $(date -d "${YEAR}-09-01" +%u) ) % 7 )) days" +%Y-%m-%d)
BEFORE_DATE=$(date -d "$LABOR_DAY -21 days" +%Y%m%d)
AFTER_DATE=$(date -d "$LABOR_DAY +3 days" +%Y%m%d)
if [ "$DATE" -ge "$BEFORE_DATE" -a "$DATE" -le "$AFTER_DATE" ]; then
echo 'Close to Labor Day! Building for linux/amd64 only for performance reasons.'
echo 'PLATFORMS=linux/amd64' >> "$GITHUB_ENV"
else
echo 'PLATFORMS=linux/amd64,linux/arm64' >> "$GITHUB_ENV"
fi
-
name: Build container
uses: ./.github/actions/docker-build-push
if: matrix.container == 'server'
with:
token: ${{ secrets.GITHUB_TOKEN }}
container: server
tag: ${{ github.ref_name }}
no-cache: true
platforms: ${{ env.PLATFORMS }}
build-args: |
TOMATO_VERSION=${{ steps.version.outputs.version }}
-
name: Build container (nginx)
uses: ./.github/actions/docker-build-push
if: matrix.container == 'nginx'
with:
token: ${{ secrets.GITHUB_TOKEN }}
container: nginx
context: server/nginx
no-cache: true
tag: ${{ github.ref_name }}
deploy:
runs-on: ubuntu-22.04
name: Deploy
needs: [build]
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Deploy containers
uses: appleboy/ssh-action@master
env:
TOMATO_TAG: ${{ github.ref_name }}
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
fingerprint: ${{ secrets.SSH_FINGERPRINT }}
envs: TOMATO_TAG
script: ${{ secrets.DEPLOY_PROD_SCRIPT_PATH }}