Skip to content

Bump semver from 5.7.1 to 5.7.2 (#136) #169

Bump semver from 5.7.1 to 5.7.2 (#136)

Bump semver from 5.7.1 to 5.7.2 (#136) #169

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install Deps
if: steps.node-modules.outputs.cache-hit != 'true'
run: yarn install
- name: Build Template
run: yarn run docs:build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.