diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index b618c58..5cae43f 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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 }}