From 64c1b86e21a0cc9e2cde02820e8c18f2db884207 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Tue, 14 Apr 2026 17:28:33 -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 00000000..75dd51d3 --- /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