Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #29

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #29

Workflow file for this run

name: Deploy GitHub pages
on:
push:
branches:
- master
env:
GH_PAGES_DIR: gh-pages-dist
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# with:
# persist-credentials: false
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build -- --env out=$GH_PAGES_DIR
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: ${{ env.GH_PAGES_DIR }} # The folder the action should deploy.
CLEAN: true