mirror of https://github.com/bra1n/townsquare.git
commit
cf13b4e142
|
@ -5,19 +5,19 @@ on:
|
||||||
- main
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build-and-deploy:
|
||||||
|
concurrency: ci-${{ github.ref }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build
|
- name: Install and Build 🔧
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm ci
|
||||||
npm run-script build
|
npm run build
|
||||||
|
|
||||||
- name: Deploy
|
- name: Deploy 🚀
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3
|
uses: JamesIves/github-pages-deploy-action@v4.2.5
|
||||||
with:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
branch: gh-pages
|
||||||
BRANCH: gh-pages
|
folder: dist
|
||||||
FOLDER: dist
|
|
||||||
|
|
Loading…
Reference in New Issue