From eb46bf67884f46dd70af7a8e78eaf2b9a23841b2 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Mon, 11 May 2026 11:34:06 -0500 Subject: [PATCH] Add `publish.yml` 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