mirror of https://github.com/bra1n/townsquare.git
24 lines
457 B
YAML
24 lines
457 B
YAML
|
name: Deploy to GitHub Pages
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
jobs:
|
||
|
build-and-deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v1
|
||
|
|
||
|
- name: Build
|
||
|
run: |
|
||
|
npm install
|
||
|
npm run-script build
|
||
|
|
||
|
- name: Deploy
|
||
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||
|
with:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
BRANCH: gh-pages
|
||
|
FOLDER: dist
|