Skip to content

chore: my focus with GHActions is 0 #6

chore: my focus with GHActions is 0

chore: my focus with GHActions is 0 #6

Workflow file for this run

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"