-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (38 loc) · 982 Bytes
/
update.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
name: Update S3 sources
on:
push:
branches:
- 'master'
pull_request:
types:
- closed
branches:
- 'master'
workflow_dispatch:
jobs:
build:
name: Deploy docs
runs-on: ubuntu-20.04
env:
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.SUBMODULE_CLONE_TOKEN }}
submodules: true
- name: Checkout LFS objects
run: git lfs pull
- name: Build pages
uses: Exabyte-io/action-mkdocs-s3-publish@main
- name: S3 Deploy
uses: Exabyte-io/action-s3-deploy@v3
with:
folder: site
bucket: docs.mat3ra.com
bucket-region: ${{ secrets.S3_LOCATION }}
dist-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
invalidation: /*
no-cache: true
private: true