@storm-software/workspace-tools 1.5.6 → 1.5.7

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.5.6](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.5...workspace-tools-v1.5.6) (2023-11-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with README template in preset ([5824423](https://github.com/storm-software/storm-ops/commit/5824423e787aa2bec7e94cca89105a2bee2828f4))
7
+
1
8
  ## [1.5.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.5.4...workspace-tools-v1.5.5) (2023-11-08)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -15,17 +15,15 @@ on:
15
15
 
16
16
  env:
17
17
  CI: true
18
- NX_DAEMON: false
19
18
  NX_VERBOSE_LOGGING: true
20
19
  STORM_REPO_WORKER: stormie-bot
21
- STORM_REPO_URL: ${{ github.repositoryUrl }}
20
+ STORM_REPO_URL: https://github.com/<%= organization %>/<%= name %>
22
21
  STORM_REPO_ROOT: ${{ github.workspace }}
23
22
  NX_BASE: ${{ github.base_ref }}
24
23
  NX_HEAD: ${{ github.head_ref }}
25
24
  GITHUB_ACTOR: ${{ github.actor }}
26
25
  GITHUB_TOKEN: ${{ github.token }}
27
26
  NPM_TOKEN: ${{ secrets.STORMIE_NPM_TOKEN }}
28
- NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
29
27
 
30
28
  jobs:
31
29
  build-and-release:
@@ -81,11 +79,13 @@ jobs:
81
79
  - name: Release Library Version Updates
82
80
  run: pnpm release --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }}
83
81
  env:
82
+ GITHUB_ACTOR: ${{ env.GITHUB_ACTOR }}
84
83
  GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
85
84
  GH_TOKEN: ${{ env.GITHUB_TOKEN }}
86
85
  NPM_TOKEN: ${{ env.NPM_TOKEN }}
87
86
  NPM_AUTH_TOKEN: ${{ env.NPM_TOKEN }}
88
87
  NODE_AUTH_TOKEN: ${{ env.NPM_TOKEN }}
89
- STORM_REPO_ROOT: ${{ env.STORM_REPO_ROOT }}
90
- STORM_REPO_URL: ${{ env.STORM_REPO_URL }}
88
+ STORM_REPO_WORKER: ${{ env.STORM_REPO_WORKER }}
89
+ STORM_REPO_ROOT: ${{ github.workspace }}
90
+ STORM_REPO_URL: ${{ github.repositoryUrl }}
91
91
  TAG: ${{ inputs.tag }}