fix: remove navs which are not complete #11
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: Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
bundler-cache: true | |
# Following the README | |
- name: Install python dependencies | |
run: pip install bibble | |
- name: Build | |
id: build | |
run: make | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: success() | |
with: | |
allow_empty_commit: false | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: publish | |
publish_dir: _site | |
user_name: "github-actions[bot]" | |
user_email: "github-actions[bot]@users.noreply.github.com" |