phantasmal-world/.github/workflows/deploy.yml
2020-09-29 18:37:13 +02:00

41 lines
844 B
YAML

name: Deploy
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Yarn cache
uses: actions/cache@v2
env:
cache-name: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-deploy-${{ env.cache-name }}
- name: Install dependencies
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: install
- name: Build
uses: CultureHQ/actions-yarn@v1.0.1
with:
args: build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist
CLEAN: true