1

30 lines
603 B
YAML

name: Deploy
on:
push:
branches:
- "master"
jobs:
build:
uses: ./.github/workflows/build.yml
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download bundle artifact
uses: actions/download-artifact@v2
with:
name: website
path: ./public
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: public
fqdn: ewpratten.com
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}