We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed61e69 commit dea19abCopy full SHA for dea19ab
2 files changed
.github/workflows/pkg.pr.new.yml
@@ -21,4 +21,9 @@ jobs:
21
22
- run: yarn --frozen-lockfile
23
24
+ # append the git commit to the package.json version.
25
+ # We do this because some cache mechanisms (like nextjs) don't work well with the same version and ignore the changes
26
+ # until you manually delete the cache
27
+ - run: jq '.version = .version + "-" + env.GITHUB_SHA' package.json > package.json.tmp && mv package.json.tmp package.json
28
+
29
- run: npx pkg-pr-new publish
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
12
+- `pkg.pr.new` workflow in order to prevent caching issues
13
14
## [5.7.0] - 2024-10-04
15
16
### Added
0 commit comments