-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (50 loc) · 1.76 KB
/
deploy.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
name: Deploy to S3
on:
push:
# pull_request:
# types: [opened, synchronize, reopened, closed]
workflow_dispatch:
workflow_run:
workflows: ["Sync Submodules"]
types: [completed]
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.action != 'closed' }}
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
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: Check trigger source
run: |
echo "BRANCH=${{ github.event.workflow_run.head_branch || github.ref_name }}" >> $GITHUB_ENV
- name: Check out code
uses: actions/checkout@v4
with:
ref: ${{ env.BRANCH }}
- name: Run Zola
uses: shalzz/[email protected]
env:
BUILD_ONLY: true
- name: Upload official docs
if: ${{ github.event_name != 'pull_request' }}
run: |
# Delete the old docs (if they exist)
aws s3 rm --recursive s3://br-www-docs/docs/${{ env.BRANCH }}
# Upload the new ones
aws s3 cp --recursive public s3://br-www-docs/docs/${{ env.BRANCH }}
# - name: Upload proposal preview
# if: ${{ github.event_name == 'pull_request' }}
# run: |
# aws s3 cp --recursive public s3://br-www-docs/preview/blueos/pull/${{ github.event.pull_request.number }}
#
# cleanup:
# runs-on: ubuntu-latest
# if: ${{ github.event.pull_request.action == 'closed' }}
# steps:
# - name: Remove proposal preview
# run: |
# aws s3 rm --recursive s3://br-www-docs/preview/blueos/pull/${{ github.event.pull_request.number }}