Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: release
Comment thread
mast1ff marked this conversation as resolved.
on:
push:
tags:
- "v*.*.*"

jobs:
release:
name: "Release"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
Comment thread
mast1ff marked this conversation as resolved.
- run: pnpm install
Comment thread
mast1ff marked this conversation as resolved.
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run format
- run: pnpm run test
Comment thread
mast1ff marked this conversation as resolved.
- run: pnpm publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}