git-secret/.github/workflows/github-pages.yml

25 lines
545 B
YAML
Raw Normal View History

2021-05-06 12:22:54 +00:00
name: github-pages
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-05-04 09:26:39 +00:00
- name: Build docs
2021-05-04 10:06:16 +00:00
run: make build-docs
- name: Deploy to Pages
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch