@monerium/sdk 1.0.19 → 1.1.0

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.
@@ -20,17 +20,12 @@ jobs:
20
20
  - uses: actions/setup-node@v1
21
21
  with:
22
22
  node-version: 18
23
- registry-url: 'https://registry.npmjs.org'
23
+ registry-url: 'https://registry.yarnpkg.com'
24
24
  scope: '@monerium'
25
25
  if: ${{ steps.release.outputs.release_created }}
26
- - run: npm ci
26
+ - run: yarn install --frozen-lockfile
27
27
  if: ${{ steps.release.outputs.release_created }}
28
- - run: |
29
- npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
30
- npm config set scope "@monerium"
31
- npm config list
32
- npm publish --access=public
33
- npm login --registry=https://registry.npmjs.org --scope=@monerium
28
+ - run: yarn publish --access=public
34
29
  env:
35
30
  NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
36
31
  if: ${{ steps.release.outputs.release_created }}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.0](https://github.com/monerium/sdk/compare/v1.0.20...v1.1.0) (2022-10-12)
4
+
5
+
6
+ ### Features
7
+
8
+ * **automated-publish:** finalize and clean up ([f0dd36b](https://github.com/monerium/sdk/commit/f0dd36b020f0642a69d8e298abb661888d316ca4))
9
+
10
+ ## [1.0.20](https://github.com/monerium/sdk/compare/v1.0.19...v1.0.20) (2022-10-12)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **automated-publish:** seems that the token was the problem, reverting back to use yarn ([14b72ee](https://github.com/monerium/sdk/commit/14b72ee579c259b29db80193b2e0bf0bfd4cc3c3))
16
+ * **automated-publish:** seems that the token was the problem, reverting back to use yarn ([e73bf66](https://github.com/monerium/sdk/commit/e73bf66fd3bef20fcdfed7187fa018b693e31dd3))
17
+
3
18
  ## [1.0.19](https://github.com/monerium/sdk/compare/v1.0.18...v1.0.19) (2022-10-12)
4
19
 
5
20
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@monerium/sdk",
3
- "version": "1.0.19",
3
+ "version": "1.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
- "@monerium:registry": "https://registry.npmjs.org"
6
+ "@monerium:registry": "https://registry.yarnpkg.com"
7
7
  },
8
8
  "repository": {
9
9
  "type": "git",