Skip to content

Deploy to GitHub pages #210

Deploy to GitHub pages

Deploy to GitHub pages #210

Workflow file for this run

name: Deploy to GitHub pages
on:
workflow_dispatch:
# push:
# branches: [main]
schedule:
- cron: "0 9 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Commit generated files inside public folder
run: |
git init
git add -A
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
working-directory: ./public
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: public