-
Notifications
You must be signed in to change notification settings - Fork 2
158 lines (134 loc) · 5.78 KB
/
app.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: App CI
on:
push:
jobs:
buildAndTest:
name: 'Build & Test'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18'] # Add other versions if needed
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Restore Node.js dependencies
uses: actions/cache@v3
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
- name: Cache Node.js dependencies
uses: actions/cache/save@v3
if: always()
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: Build App
run: yarn nx run app:build --prod --skip-nx-cache
bumpVersion:
name: 'Bump version'
runs-on: ubuntu-latest
if: "(github.ref == 'refs/heads/develop')"
needs: buildAndTest
outputs:
newTag: ${{ steps.version-bump.outputs.newTag }}
steps:
- name: 'Checkout source code'
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: 'Automated Version Bump'
id: version-bump
uses: 'phips28/gh-action-bump-version@master'
with:
tag-prefix: 'v'
tag-suffix: '-app'
commit-message: 'CI: bumps version to {{version}}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PACKAGEJSON_DIR: 'apps/app'
autodeploy:
name: 'Auto deploy'
runs-on: ubuntu-latest
if: "(github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main')"
needs: [buildAndTest]
outputs:
newTag: ${{ steps.version-bump.outputs.newTag }}
steps:
- name: 'Checkout source code'
uses: 'actions/checkout@v3'
with:
ref: ${{ github.ref }}
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-3
- name: Restore Node.js dependencies
uses: actions/cache@v3
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Set environment based on branch
run: |
if [[ $GITHUB_REF == 'refs/heads/develop' ]]; then
echo "S3_URL=s3://dev-app.thx.network" >> $GITHUB_ENV
echo "DISTRIBUTION=${{ secrets.CLOUDFRONT_DISTRIBUTION_APP_DEV }}" >> $GITHUB_ENV
echo "BUILD_MODE=dev" >> $GITHUB_ENV
elif [[ $GITHUB_REF == 'refs/heads/main' ]]; then
echo "S3_URL=s3://app.thx.network" >> $GITHUB_ENV
echo "DISTRIBUTION=${{ secrets.CLOUDFRONT_DISTRIBUTION_APP_PROD }}" >> $GITHUB_ENV
echo "BUILD_MODE=prod" >> $GITHUB_ENV
fi
- name: Build App
run: NODE_ENV='production' yarn nx run app:build --configuration=production --mode $BUILD_MODE --skip-nx-cache
- name: Deploy
run: aws s3 sync ./dist/apps/app $S3_URL --delete
- name: Invalidate CloudFront cache
run: aws cloudfront create-invalidation --distribution-id $DISTRIBUTION --paths "/*"
discord:
name: Update Discord
runs-on: ubuntu-latest
needs: [autodeploy]
steps:
- name: 'Checkout source code'
uses: 'actions/checkout@v3'
with:
ref: ${{ github.ref }}
- name: Set DISCORD_WEBHOOK based on branch
run: |
if [[ $GITHUB_REF == 'refs/heads/develop' ]]; then
echo "DISCORD_WEBHOOK=${{ secrets.DISCORD_WEBHOOK_DEV }}" >> $GITHUB_ENV
elif [[ $GITHUB_REF == 'refs/heads/main' ]]; then
echo "DISCORD_WEBHOOK=${{ secrets.DISCORD_WEBHOOK_PROD }}" >> $GITHUB_ENV
fi
- name: Get version
run: echo "PACKAGE_VERSION=$(cat apps/app/package.json | jq -r '.version' | tr -d '"')" >> $GITHUB_ENV
- name: Send message
env:
DISCORD_WEBHOOK: ${{ env.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@master
with:
args: "${{ needs.autodeploy.result == 'success' && '✅' || '⛔' }} Released App `v${{ env.PACKAGE_VERSION }}-app`"