Skip to content
Merged
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
7 changes: 1 addition & 6 deletions .github/workflows/stable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ permissions:
contents: write
issues: write
pull-requests: write
id-token: write # Required for OIDC

jobs:
stable-release:
Expand Down Expand Up @@ -67,8 +68,6 @@ jobs:
if: ${{ (inputs.release_type || 'promote-beta') == 'promote-beta' }}
id: find_beta
working-directory: extensions/cli
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
if [[ -n "${{ inputs.beta_version }}" ]]; then
# Manual input provided
Expand Down Expand Up @@ -117,8 +116,6 @@ jobs:
- name: Download and verify beta package
if: ${{ (inputs.release_type || 'promote-beta') == 'promote-beta' }}
working-directory: extensions/cli
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
# Download the specific beta version
npm pack @continuedev/cli@${{ steps.find_beta.outputs.beta_version }}
Expand Down Expand Up @@ -189,8 +186,6 @@ jobs:

- name: Publish stable to npm
working-directory: extensions/cli
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm publish --tag latest
echo "Published stable version: ${{ steps.final_version.outputs.stable_version }}"
Expand Down
Loading