@trieb.work/nextjs-turbo-redis-cache 1.10.0-beta.13 → 1.10.0-beta.14

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.
@@ -42,33 +42,12 @@ jobs:
42
42
  - name: Build project
43
43
  run: pnpm build
44
44
 
45
- - name: Show npm provenance config
46
- env:
47
- NPM_CONFIG_PROVENANCE: 'true'
48
- run: |
49
- node -v
50
- npm -v
51
- echo "NPM_CONFIG_PROVENANCE=$NPM_CONFIG_PROVENANCE"
52
- npm config get provenance
53
- node -e "console.log('package.json publishConfig.provenance=', require('./package.json')?.publishConfig?.provenance)"
54
-
55
45
  - name: Run Semantic Release
56
46
  env:
57
47
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub token for Semantic Release
58
48
  NPM_CONFIG_PROVENANCE: 'true'
59
49
  run: pnpm exec semantic-release
60
50
 
61
- - name: Diagnostics (OIDC + npm config)
62
- env:
63
- NPM_CONFIG_PROVENANCE: 'true'
64
- run: |
65
- echo "github.ref_name=${{ github.ref_name }}"
66
- echo "ACTIONS_ID_TOKEN_REQUEST_URL=${ACTIONS_ID_TOKEN_REQUEST_URL:+set}"
67
- echo "ACTIONS_ID_TOKEN_REQUEST_TOKEN=${ACTIONS_ID_TOKEN_REQUEST_TOKEN:+set}"
68
- echo "CI=${CI:-unset}"
69
- npm config get registry
70
- npm config get provenance
71
-
72
51
  - name: Exchange GitHub OIDC token for npm token
73
52
  id: npm-oidc
74
53
  env:
@@ -141,47 +120,5 @@ jobs:
141
120
  NPM_CONFIG_PROVENANCE: 'true'
142
121
  NPM_DIST_TAG: ${{ github.ref_name == 'beta' && 'beta' || 'latest' }}
143
122
  NPM_CONFIG_USERCONFIG: ${{ steps.npm-oidc.outputs.npmrc_path }}
144
- run: |
145
- set -euo pipefail
146
-
147
- echo "--- npm debug context (pre-publish) ---"
148
- node -v
149
- npm -v
150
- echo "pwd=$(pwd)"
151
- echo "NPM_CONFIG_USERCONFIG=${NPM_CONFIG_USERCONFIG}"
152
- echo "NPM_CONFIG_PROVENANCE=${NPM_CONFIG_PROVENANCE}"
153
- echo "NPM_DIST_TAG=${NPM_DIST_TAG}"
154
-
155
- echo "--- npmrc (redacted) ---"
156
- if [ -f "${NPM_CONFIG_USERCONFIG}" ]; then
157
- sed -E 's#(//registry\.npmjs\.org/:_authToken=).*#\1***REDACTED***#' "${NPM_CONFIG_USERCONFIG}" || true
158
- else
159
- echo "npmrc missing at ${NPM_CONFIG_USERCONFIG}"
160
- fi
161
-
162
- echo "--- npm config list (redacted) ---"
163
- npm config list -l | sed -E 's#(_authToken=).*#\1***REDACTED***#' || true
164
-
165
- echo "--- npm ping / whoami (best effort) ---"
166
- npm ping --registry https://registry.npmjs.org/ || true
167
- npm whoami --registry https://registry.npmjs.org/ || true
168
-
169
- echo "--- npm publish (verbose) ---"
170
- publish_status=0
171
- npm publish --provenance --access public --tag "$NPM_DIST_TAG" --registry https://registry.npmjs.org/ --loglevel verbose || publish_status=$?
172
-
173
- echo "--- npm debug logs (redacted) ---"
174
- if [ -d "$HOME/.npm/_logs" ]; then
175
- ls -la "$HOME/.npm/_logs" || true
176
- latest_log=$(ls -t "$HOME/.npm/_logs"/*-debug-*.log 2>/dev/null | head -n 1 || true)
177
- if [ -n "${latest_log}" ] && [ -f "${latest_log}" ]; then
178
- echo "latest_log=${latest_log}"
179
- sed -E 's#(//registry\.npmjs\.org/:_authToken=).*#\1***REDACTED***#; s#(_authToken=).*#\1***REDACTED***#' "${latest_log}" || true
180
- else
181
- echo "No npm debug log found"
182
- fi
183
- else
184
- echo "No npm logs directory found"
185
- fi
186
-
187
- exit $publish_status
123
+ run: npm publish --provenance --access public --tag $NPM_DIST_TAG --registry https://registry.npmjs.org/
124
+
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [1.10.0-beta.14](https://github.com/trieb-work/nextjs-turbo-redis-cache/compare/v1.10.0-beta.13...v1.10.0-beta.14) (2025-12-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove extensive debugging and simplify npm publish step in release workflow ([d3b7aa9](https://github.com/trieb-work/nextjs-turbo-redis-cache/commit/d3b7aa9fa13d9ff65e2b34e1e49433507cfb9cb2))
7
+
1
8
  # [1.10.0-beta.13](https://github.com/trieb-work/nextjs-turbo-redis-cache/compare/v1.10.0-beta.12...v1.10.0-beta.13) (2025-12-27)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trieb.work/nextjs-turbo-redis-cache",
3
- "version": "1.10.0-beta.13",
3
+ "version": "1.10.0-beta.14",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/trieb-work/nextjs-turbo-redis-cache.git"
@@ -17,7 +17,6 @@ module.exports = {
17
17
  [
18
18
  '@semantic-release/github',
19
19
  {
20
- assets: ['dist/*.tgz'], // Attach tarballs to GitHub releases
21
20
  labels: [],
22
21
  },
23
22
  ],