1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-30 04:05:58 -04:00

Start switch to GitHub Pages and separate sub-repos

This commit is contained in:
2019-09-22 01:32:46 -04:00
parent b60829732a
commit 1b03ee00e7
5 changed files with 28 additions and 173 deletions
+24
View File
@@ -0,0 +1,24 @@
name: GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
lfs: false
- uses: jakejarvis/hugo-build-action@develop-v0.53-DEV
- uses: jakejarvis/github-pages-deploy-action@master
env:
PAGES_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }}
PAGES_CNAME: 'jarv.is'
PAGES_SOURCE_FOLDER: 'public'
PAGES_SOURCE_BRANCH: 'master'
PAGES_TARGET_BRANCH: 'master'
PAGES_TARGET_REPO: 'jakejarvis.github.io'