@monerium/sdk 1.0.13 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,10 +23,14 @@ jobs:
23
23
  registry-url: 'https://registry.npmjs.org'
24
24
  scope: '@monerium'
25
25
  if: ${{ steps.release.outputs.release_created }}
26
- - run: yarn install --frozen-lockfile
26
+ - run: npm ci
27
27
  if: ${{ steps.release.outputs.release_created }}
28
28
  - run: |
29
+ npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
30
+ npm config set scope "@monerium"
31
+ npm config list
29
32
  npm publish --access=public
33
+ npm login --registry=https://registry.npmjs.org --scope=@monerium
30
34
  env:
31
35
  NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
32
36
  if: ${{ steps.release.outputs.release_created }}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.19](https://github.com/monerium/sdk/compare/v1.0.18...v1.0.19) (2022-10-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **automated-publish:** tried adding a new npm token ([ec99f13](https://github.com/monerium/sdk/commit/ec99f1395f8285f5730f02b19a12e0d45dbe2197))
9
+
10
+ ## [1.0.18](https://github.com/monerium/sdk/compare/v1.0.17...v1.0.18) (2022-10-12)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **automated-publish:** try adding scope to npmrc ([6d965ca](https://github.com/monerium/sdk/commit/6d965ca8e393e97178895da5f8bbd94608f3ea2d))
16
+
17
+ ## [1.0.17](https://github.com/monerium/sdk/compare/v1.0.16...v1.0.17) (2022-10-12)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **automated-publish:** use npm instead of yarn ([5da46ae](https://github.com/monerium/sdk/commit/5da46ae84fdca9a4258eff0e0aa24e5285a77786))
23
+
24
+ ## [1.0.16](https://github.com/monerium/sdk/compare/v1.0.15...v1.0.16) (2022-10-12)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * **automated-publish:** im just doing something at this point, hoping to get a different result ([7465711](https://github.com/monerium/sdk/commit/7465711b68904a35f38d9b9b423dd0557acb4e62))
30
+
31
+ ## [1.0.15](https://github.com/monerium/sdk/compare/v1.0.14...v1.0.15) (2022-10-12)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * **automated-publish:** try setting scope and authToken in action, ugh ([4dcf78c](https://github.com/monerium/sdk/commit/4dcf78c5bdd47a1fb0d69e56e2b3767bd290bc0f))
37
+
38
+ ## [1.0.14](https://github.com/monerium/sdk/compare/v1.0.13...v1.0.14) (2022-10-12)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * typo to trigger rebuild ([3e1ad6a](https://github.com/monerium/sdk/commit/3e1ad6a4d883035be700bddd35b9a76ca06b6944))
44
+
3
45
  ## [1.0.13](https://github.com/monerium/sdk/compare/v1.0.12...v1.0.13) (2022-10-12)
4
46
 
5
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monerium/sdk",
3
- "version": "1.0.13",
3
+ "version": "1.0.19",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "@monerium:registry": "https://registry.npmjs.org"