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