diff --git a/.github/workflows/deprecate_old.yaml b/.github/workflows/deprecate_old.yaml new file mode 100644 index 0000000..f84748b --- /dev/null +++ b/.github/workflows/deprecate_old.yaml @@ -0,0 +1,16 @@ +name: Deprecate packages on npm +on: + workflow_dispatch: +jobs: + deprecate: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.12.2' + registry-url: 'https://registry.npmjs.org' + token: ${{ secrets.NPM_TOKEN }}