forked from ent/ent
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (42 loc) · 1.29 KB
/
cd.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
name: Continuous Deployment
on:
push:
branches:
- master
paths:
- 'doc/**'
schedule:
- cron: "0 9 * * 0-5"
jobs:
docs:
name: docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
- name: Install Dependencies
working-directory: doc/website
run: yarn
- name: Sync Translation
working-directory: doc/website
run: yarn crowdin:sync
env:
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
- name: Build Docs
working-directory: doc/website
run: yarn build
- name: Configure AWS credentials
uses: aws-actions/[email protected]
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Deploy Docs
working-directory: doc/website/build
run: aws s3 sync . s3://entgoio --delete --exclude "images/*"
- name: Invalidate Cache
env:
CDN_DISTRIBUTION_ID: ${{ secrets.CDN_DISTRIBUTION_ID }}
run: aws cloudfront create-invalidation --distribution-id $CDN_DISTRIBUTION_ID --paths "/*" | jq -M "del(.Location)"