CI: thermokarst style guide

This commit is contained in:
Matthew Ryan Dillon 2020-10-17 19:32:36 -07:00
parent b967b222b1
commit 79d820ba43

View file

@ -1,15 +1,15 @@
name: "Publish"
name: publish
on:
# Run only when pushing to master branch
push:
branches:
- master
- main
jobs:
neuron:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download neuron
- name: download neuron
run: |
curl --silent https://api.github.com/repos/srid/neuron/actions/artifacts \
| jq 'first(.artifacts | .[] | select(.name == "neuron-bundle-linux") | .archive_download_url)' -r \
@ -17,10 +17,12 @@ jobs:
unzip neuron-bundle-linux.zip
chmod +x neuron
./neuron --version # This extracts the bundle; should take a while
- name: Build neuron site 🔧
- name: build site
run: |
./neuron -d $PWD rib
- name: Deploy to gh-pages 🚀
- name: deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}