CI: thermokarst style guide
This commit is contained in:
parent
b967b222b1
commit
79d820ba43
1 changed files with 8 additions and 6 deletions
14
.github/workflows/publish.yaml
vendored
14
.github/workflows/publish.yaml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue