Compare commits

...

1 Commits

Author SHA1 Message Date
Tom Boucher
fb469e3657 Revert "ci: fix release pipeline — update actions, add GH releases, extend CI triggers (#1956)"
This reverts commit 6b7b6a0ae8.
2026-04-11 15:46:02 -04:00
2 changed files with 0 additions and 32 deletions

View File

@@ -190,16 +190,6 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub Release
if: ${{ !inputs.dry_run }}
env:
GH_TOKEN: ${{ github.token }}
VERSION: ${{ inputs.version }}
run: |
gh release create "v${VERSION}" \
--title "v${VERSION} (hotfix)" \
--generate-notes
- name: Clean up next dist-tag
if: ${{ !inputs.dry_run }}
env:

View File

@@ -208,17 +208,6 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub pre-release
if: ${{ !inputs.dry_run }}
env:
GH_TOKEN: ${{ github.token }}
PRE_VERSION: ${{ steps.prerelease.outputs.pre_version }}
run: |
gh release create "v${PRE_VERSION}" \
--title "v${PRE_VERSION}" \
--generate-notes \
--prerelease
- name: Verify publish
if: ${{ !inputs.dry_run }}
env:
@@ -342,17 +331,6 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub Release
if: ${{ !inputs.dry_run }}
env:
GH_TOKEN: ${{ github.token }}
VERSION: ${{ inputs.version }}
run: |
gh release create "v${VERSION}" \
--title "v${VERSION}" \
--generate-notes \
--latest
- name: Clean up next dist-tag
if: ${{ !inputs.dry_run }}
env: