Skip to content

Commit

Permalink
chore: publish npm package action
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVidra committed Oct 19, 2023
1 parent 04b7de7 commit 45cd068
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish NPM package

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm release

0 comments on commit 45cd068

Please sign in to comment.