@i-santos/create-package-starter 0.1.1 → 0.1.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i-santos/create-package-starter",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Scaffold new npm packages with standardized release scripts",
5
5
  "license": "MIT",
6
6
  "author": "Igor Santos",
@@ -26,6 +26,8 @@ jobs:
26
26
  cache: npm
27
27
  registry-url: https://registry.npmjs.org
28
28
 
29
+ - run: npm install -g npm@latest
30
+
29
31
  - name: Install
30
32
  run: npm ci
31
33
 
@@ -36,8 +38,9 @@ jobs:
36
38
  uses: changesets/action@v1
37
39
  with:
38
40
  version: npm run version-packages
39
- publish: env -u NODE_AUTH_TOKEN -u NPM_TOKEN npm run release
41
+ publish: npm run release
40
42
  title: "chore: release packages"
41
43
  commit: "chore: release packages"
42
44
  env:
45
+ NODE_AUTH_TOKEN: ""
43
46
  GITHUB_TOKEN: ${{ secrets.CHANGESETS_GH_TOKEN || secrets.GITHUB_TOKEN }}