Skip to content

Remove nanoid from package.json (#117) #11

Remove nanoid from package.json (#117)

Remove nanoid from package.json (#117) #11

Workflow file for this run

---
name: Release
on: # yamllint disable-line rule:truthy
push:
tags:
- 'v*.*.*'
defaults:
run:
shell: sh
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Compile
uses: pnpm/action-setup@v4
with:
package_json_file: package.json
run_install: true
- name: Build
run: pnpm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
github:
name: GitHub
needs: [deploy]
uses: fabasoad/reusable-workflows/.github/workflows/wf-github-release.yml@main
with:
bump-tags: false