Skip to content

lil-pomo: remove cover, show elapsed time, refactor to react-like API… #6

lil-pomo: remove cover, show elapsed time, refactor to react-like API…

lil-pomo: remove cover, show elapsed time, refactor to react-like API… #6

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master # Set a branch name to trigger deployment
pull_request:
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Build
run: bash build.sh
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
# If you're changing the branch from master,
# also change the `master` in `refs/heads/master`
# below accordingly.
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
enable_jekyll: true