Files
humans.txt/.github/workflows/deploy.yml
Tim Ruffles 533e32613e tweaks
2019-12-20 13:11:47 +00:00

22 lines
518 B
YAML

on:
push:
branches: ["master", "deploy-test"]
jobs:
depoy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: mkdir gh-pages
- run: cp favicon.ico gh-pages
- uses: ./
with:
format: html
output: ./gh-pages/index.html
- run: "find ./gh-pages"
- uses: peaceiris/actions-gh-pages@v2
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
PUBLISH_DIR: gh-pages
PUBLISH_BRANCH: gh-pages