Skip to content

Create gh-pages.yml

Create gh-pages.yml #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- docs
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: docs/_build/html
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}