Skip to content

Bump semver from 5.7.1 to 5.7.2 #11

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #11

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[CI SKIP]')"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v3
- name: ⚡ use node
uses: actions/setup-node@v3
with:
node-version: "16.x"
- name: ⚙️ npm setup
run: npm ci
- name: 🔨 npm build
run: npm run build
- name: 🚀 deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build