Skip to content

Fix sizes modifier

Fix sizes modifier #6

Workflow file for this run

name: release
on:
push:
tags:
- v*
jobs:
deploy-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 18.x
- run: 'npm install'
- run: |
npm run build
touch build/.nojekyll
- if: success()
uses: crazy-max/[email protected]
with:
keep_history: true
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}