diff --git a/.github/workflows/release_publish-canary.yml b/.github/workflows/release_publish-canary.yml
index 3ae4d8cb053..fc337e758e9 100644
--- a/.github/workflows/release_publish-canary.yml
+++ b/.github/workflows/release_publish-canary.yml
@@ -56,7 +56,7 @@ jobs:
           git config --local user.email ${{ secrets.GH_DEPLOY_EMAIL }}
           git config --local user.name ${{ secrets.GH_DEPLOY_NAME }}
       - name: Publish with script
-        run: bun release canary -i ${{ github.event.inputs.increment }}
+        run: bun release exec canary --increment=${{ github.event.inputs.increment }}
         env:
           FORCE_COLOR: 2
           CI: true
diff --git a/.github/workflows/release_publish-lts.yml b/.github/workflows/release_publish-lts.yml
index eed53e3e6d7..fde6e4e8053 100644
--- a/.github/workflows/release_publish-lts.yml
+++ b/.github/workflows/release_publish-lts.yml
@@ -57,6 +57,7 @@ jobs:
           FORCE_COLOR: 2
           CI: true
           NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
+          GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
       - uses: actions/upload-artifact@v4
         with:
           name: tarballs
diff --git a/.github/workflows/release_publish-stable.yml b/.github/workflows/release_publish-stable.yml
index 3201e20b0b7..2586a3094c9 100644
--- a/.github/workflows/release_publish-stable.yml
+++ b/.github/workflows/release_publish-stable.yml
@@ -89,6 +89,7 @@ jobs:
           FORCE_COLOR: 2
           CI: true
           NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
+          GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
       - name: Publish New Release (Reversion)
         # If we are reversioning
         # Then we increment from the branch with the supplied increment
@@ -99,3 +100,4 @@ jobs:
           FORCE_COLOR: 2
           CI: true
           NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
+          GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}