-
Notifications
You must be signed in to change notification settings - Fork 155
31 lines (28 loc) · 1.49 KB
/
deprecate_version.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Deprecate X-Ray Node SDK Version
on:
workflow_dispatch:
jobs:
deprecate_xray_node_sdk_version:
name: Deprecate X-Ray Node SDK version in NPM registry
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g [email protected]
- name: Deprecate Version 3.7.0
run: |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}