From 57c60b41691830781d464830c6626cc3c1952606 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Tue, 14 Apr 2026 17:48:48 -0500 Subject: [PATCH] Add `publish` workflow --- .github/workflows/publish.yml | 17 +++++++++++++++++ 1 file changed, 17 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..75dd51d --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,17 @@ +name: Publish +on: + push: + tags: + - v* +permissions: + id-token: write + contents: write +jobs: + publish: + runs-on: ubuntu-latest + environment: + name: npm + name: Publish + steps: + - uses: holepunchto/actions/node-base@v1 + - uses: holepunchto/actions/publish@v1