@monerium/sdk 1.0.19 → 1.0.20

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,15 @@ 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
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
29
+ yarn config set scope "@monerium"
30
+ yarn config list
31
+ yarn publish --access=public
34
32
  env:
35
33
  NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
36
34
  if: ${{ steps.release.outputs.release_created }}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.20](https://github.com/monerium/sdk/compare/v1.0.19...v1.0.20) (2022-10-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **automated-publish:** seems that the token was the problem, reverting back to use yarn ([14b72ee](https://github.com/monerium/sdk/commit/14b72ee579c259b29db80193b2e0bf0bfd4cc3c3))
9
+ * **automated-publish:** seems that the token was the problem, reverting back to use yarn ([e73bf66](https://github.com/monerium/sdk/commit/e73bf66fd3bef20fcdfed7187fa018b693e31dd3))
10
+
3
11
  ## [1.0.19](https://github.com/monerium/sdk/compare/v1.0.18...v1.0.19) (2022-10-12)
4
12
 
5
13
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@monerium/sdk",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
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",