Files
humans.txt/.github/workflows/deploy.yml
Shohei Ueda 71716363fb Bump peaceiris/actions-gh-pages from v2 to v3 (#29)
Version 2 is no longer be maintained.

The latest README: https://github.com/peaceiris/actions-gh-pages
2020-08-11 17:45:24 -04:00

23 lines
498 B
YAML

name: Deploy 🚀
on:
push:
branches: ["main", "deploy-test"]
jobs:
deploy:
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@v3.6.4
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: gh-pages