Skip to content

Commit 73dbb12

Browse files
Fixed incorrect file pattern in npm publish comand. (#15)
* Fixed incorrect file pattern in npm publish comand.
1 parent 138a1de commit 73dbb12

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

continuous-delivery/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ phases:
99
- aws secretsmanager get-secret-value --secret-id prod/npm-registry/.npmrc --region us-east-1 | jq -r .SecretString > .npmrc
1010
- npm install
1111
- npm pack
12-
- npm --userconfig ./.npmrc publish aws-iot-device-sdk-js-v2*.tgz
12+
- npm --userconfig ./.npmrc publish aws-iot-device-sdk-v2*.tgz

continuous-delivery/test-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if [ "$PUBLISHED_TAG_VERSION" == "$CURRENT_TAG_VERSION" ]; then
2525
cd samples/node/pub_sub
2626
npm install
2727
npm run tsc
28-
node dist/index.js --ca_file /tmp/AmazonRootCA1.pem --cert /tmp/certificate.pem --key /tmp/privatekey.pem --endpoint $endpoint --client_id prod_nodejs_test --verbosity info
28+
node dist/index.js --ca_file /tmp/AmazonRootCA1.pem --cert /tmp/certificate.pem --key /tmp/privatekey.pem --endpoint $endpoint --verbosity info
2929

3030
exit 0
3131
fi

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-iot-device-sdk-v2",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "NodeJS API for the AWS IoT service",
55
"homepage": "https://github.com/aws/aws-iot-device-sdk-js-v2",
66
"repository": {

samples/node/basic_discovery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"typescript": "^3.7.3"
1919
},
2020
"dependencies": {
21-
"aws-iot-device-sdk-v2": "^1.0.2",
21+
"aws-iot-device-sdk-v2": "^1.0.3",
2222
"yargs": "^14.0.0"
2323
}
2424
}

samples/node/pub_sub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"typescript": "^3.7.3"
2222
},
2323
"dependencies": {
24-
"aws-iot-device-sdk-v2": "^1.0.2",
24+
"aws-iot-device-sdk-v2": "^1.0.3",
2525
"yargs": "^14.0.0"
2626
}
2727
}

0 commit comments

Comments
 (0)