Skip to content

maj

maj #547

Workflow file for this run

name: Build
on:
push:
branches: beta
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
steps:
- uses: actions/checkout@v3
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: npm run build prod
run: |
npm ci --force
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages
folder: dist
clean: true