Skip to content

Commit

Permalink
Merge pull request #5257 from Shopify/deprecate-shopify-cli-extensions
Browse files Browse the repository at this point in the history
Workflow to deprecate more old packages in NPM
  • Loading branch information
gonzaloriestra authored Jan 23, 2025
2 parents 7b3ba77 + 34895ce commit ea0cc7c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deprecate-shopify-cli-extensions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deprecate shopify-cli-extensions

on:
workflow_dispatch:

jobs:
release:
name: Deprecate shopify-cli-extensions
runs-on: ubuntu-latest
steps:
- name: Deprecate
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
npm deprecate @shopify/shopify-cli-extensions@"*" "Please use @shopify/cli instead."
npm deprecate @shopify/ngrok@"*" "This package is deprecated."
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit ea0cc7c

Please sign in to comment.