From 24e397b5e06f9c280eab12fbe90c5dfadba06ff6 Mon Sep 17 00:00:00 2001 From: eimexdev Date: Fri, 11 Sep 2026 20:39:06 -0700 Subject: [PATCH] fix: publish release tarball as an explicit local path --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e76718d..c290f9c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -111,7 +111,7 @@ jobs: env: RELEASE_VERSION: ${{ needs.resolve.outputs.version }} RELEASE_CHANNEL: ${{ needs.resolve.outputs.channel }} - run: npm publish "release/t3poll-$RELEASE_VERSION.tgz" --access public --tag "$RELEASE_CHANNEL" --provenance + run: npm publish "./release/t3poll-$RELEASE_VERSION.tgz" --access public --tag "$RELEASE_CHANNEL" --provenance - name: Record the release and source commit env: GH_TOKEN: ${{ github.token }}