townsquare/.github/workflows/deploy.yml
2023-05-23 18:15:26 +01:00

26 lines
563 B
YAML

name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: dist