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: 2 additions & 5 deletions .github/workflows/unpublish-rc-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ jobs:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'

- name: Configure npm authentication
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc
echo "@envoy:registry=https://npm.pkg.github.com/" >> ~/.npmrc

- name: List RC versions
if: github.event.inputs.action_type == 'list_versions'
run: |
Expand All @@ -54,6 +49,8 @@ jobs:
echo "To unpublish a version, run this workflow again with:" >> $GITHUB_STEP_SUMMARY
echo "- **action_type**: unpublish" >> $GITHUB_STEP_SUMMARY
echo "- **version**: the version to unpublish" >> $GITHUB_STEP_SUMMARY
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Unpublish RC version
if: github.event.inputs.action_type == 'unpublish' && github.event.inputs.version != ''
Expand Down
Loading