From a011a7656324a584d977d2f6ce17249e4211da39 Mon Sep 17 00:00:00 2001 From: Ikramullah Date: Thu, 7 Mar 2024 21:00:33 +0800 Subject: [PATCH] github: add npm publish workflows --- .github/workflows/publish.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..363d36d --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,10 @@ +name: Publish to NPM & GitHub registry + +on: + release: + types: [created] + +jobs: + publish: + uses: kakushindev/workflows/.github/workflows/pnpm-publish.yml@main + secrets: inherit