-
-
Notifications
You must be signed in to change notification settings - Fork 61
131 lines (112 loc) · 3.64 KB
/
server.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
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
123
124
125
126
127
128
129
130
131
name: Server CI/CD
on:
push:
branches:
- "staging"
- "release/*"
paths:
- "server/**"
- "common/**"
pull_request:
branches:
- "staging"
- "release/*"
paths:
- "server/**"
- "common/**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
env:
NODE_ENV: "test"
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7.20.0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: pnpm
- name: Install dependencies
run: pnpm --filter tachi-server... --filter . install
# configure external dbs
- uses: supercharge/[email protected]
- uses: supercharge/[email protected]
- name: Run tests
run: pnpm --filter tachi-server test
env:
NODE_ENV: "test"
PORT: 8080
MONGO_URL: "127.0.0.1"
REDIS_URL: "127.0.0.1"
- name: Lint code
run: pnpm --filter tachi-server lint
- name: Typecheck code
run: pnpm --filter tachi-server typecheck
docker-push:
runs-on: ubuntu-latest
needs: [test]
defaults:
run:
working-directory: ./server
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker Hub login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Develop tag
if: github.ref == 'refs/heads/staging'
run: echo "BRANCH_TAG=develop" >> $GITHUB_ENV
- name: Stable tag
if: startsWith(github.ref, 'refs/heads/release')
run: echo "BRANCH_TAG=stable" >> $GITHUB_ENV
- name: Version tag
run: 'echo "VERSION_TAG=$(cat package.json | grep version | head -1 | awk -F: ''{ print $2 }'' | sed ''s/[", ]//g'')" >> $GITHUB_ENV'
- name: Commit Hash
run: 'echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
context: ./
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/tachi-server:${{ env.BRANCH_TAG }},${{ secrets.DOCKER_USERNAME }}/tachi-server:${{ env.VERSION_TAG }}
file: ./Dockerfile.server
build-args: |
COMMIT_HASH=${{ env.SHORT_SHA }}
cache-from: type=gha,scope=$GITHUB_REF_NAME-server
cache-to: type=gha,mode=max,scope=$GITHUB_REF_NAME-server
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
deploy:
runs-on: ubuntu-latest
needs: [docker-push]
defaults:
run:
working-directory: ./server
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
steps:
- name: Deploy to staging
if: github.ref == 'refs/heads/staging'
uses: appleboy/ssh-action@1a8b3784eaa665f677fa114edd5683bb6a6bfaa8
with:
host: ${{ secrets.TACHI_HOST }}
username: tachi
key: ${{ secrets.TACHI_KEY }}
script: tachi-server-deploy -s
- name: Deploy to live
if: startsWith(github.ref, 'refs/heads/release')
uses: appleboy/ssh-action@1a8b3784eaa665f677fa114edd5683bb6a6bfaa8
with:
host: ${{ secrets.TACHI_HOST }}
username: tachi
key: ${{ secrets.TACHI_KEY }}
script: tachi-server-deploy