Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,12 @@ jobs:
--targets=linux-x64,win32-x64,darwin-arm64 \
--ignore-missing


npm-publish:
runs-on: ubuntu-latest
needs: [check-version, test, upload-assets]
permissions:
id-token: write
id-token: write # Required for OIDC
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
Expand All @@ -151,15 +152,11 @@ jobs:

# Dry run NPM publish
- name: Dry run NPM publish
run: npm publish --tag ${{ needs.check-version.outputs.oclif_channel }} --provenance --access public --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.HD_CLI_NPM_TOKEN }}
run: npm publish --tag ${{ needs.check-version.outputs.oclif_channel }} --access public --dry-run # --provenance no longer needed as OIDC uses that by default

# NPM Release
- name: Create NPM release
run: npm publish --tag ${{ needs.check-version.outputs.oclif_channel }} --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.HD_CLI_NPM_TOKEN }}
run: npm publish --tag ${{ needs.check-version.outputs.oclif_channel }} --access public # --provenance no longer needed as OIDC uses that by default

publish-images:
name: Publish Images
Expand Down
92 changes: 0 additions & 92 deletions .github/workflows/release.yml

This file was deleted.