-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (29 loc) · 999 Bytes
/
hugo_ci.yaml
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
name: Hugo Build and Deploy
on: push
env:
BASE_URL: ${{ (github.ref == 'refs/heads/master' && 'gen3.org') || 'alpha.gen3.org' }}
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.100.2'
extended: true
- name: Setup Asciidoctor
run: sudo apt-get install -y asciidoctor # support asciidoc files
- name: Update Config (replace {BASE_URL})
run: sed -i "s|{BASE_URL}|${BASE_URL}|g" config.yaml
- name: Build Site
run: hugo
- name: Install AWS CLI
uses: chrislennon/[email protected]
- name: Deploy to S3
run: |
aws s3 cp public s3://${{ env.BASE_URL }}/ --recursive --region ${{ vars.AWS_REGION }} --acl public-read
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}