Use default GITHUB_TOKEN for publishing pages #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |