-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (39 loc) · 1.28 KB
/
linux-build-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
name: Build and Deploy [Linux]
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Clean
run: rm -rf public || exit 0
- name: Install tools
run: |
gem install asciidoctor
wget https://github.com/gohugoio/hugo/releases/download/v0.84.0/hugo_0.84.0_Linux-64bit.tar.gz -O /tmp/hugo.tar.gz
wget https://github.com/bmuschko/link-verifier/releases/download/v0.7/link-verifier-0.7-linux-amd64.tar.gz -O /tmp/link-verifier.tar.gz
tar -xvf /tmp/hugo.tar.gz
tar -xvf /tmp/link-verifier.tar.gz
export PATH=$PATH:$PWD/hugo/:$PWD/link-verifier/
# - name: Verify links
# run: ./link-verifier --dirs layouts --includes *.html --ignore-status-codes 999,400,429,403 --timeout 90
- name: Build website
run: |
./hugo
echo automatedascent.com >> public/CNAME
- name: Deploy website
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public