mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
ed5f9cd4d7
This should also fix gh-pages deploy
25 lines
595 B
YAML
25 lines
595 B
YAML
name: Deploy Documentation to Github Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
|
|
- 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
|