Skip to content

Merge pull request #152 from rei/pr/ACS-3919-small-dev-fixes #92

Merge pull request #152 from rei/pr/ACS-3919-small-dev-fixes

Merge pull request #152 from rei/pr/ACS-3919-small-dev-fixes #92

Workflow file for this run

name: Deploy
on:
push:
branches: [ next, main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: . # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch