mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 12:16:21 -04:00
20 lines
353 B
YAML
20 lines
353 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: jakejarvis/hugo-build-action@master
|
|
with:
|
|
args: --gc --cleanDestinationDir -b "/"
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: public
|
|
path: './public'
|