Skip to content

Commit

Permalink
ci: fix path to postchangelog hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Jun 1, 2024
1 parent 4d33f6c commit dba35fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commit-and-tag-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ if (opt.beta) {
dryRun: opt.dryRun,
tagPrefix: "",
scripts: {
postchangelog: "node _changelog.mjs -b",
postchangelog: "node hooks/_changelog.mjs -b",
},
})
.then(() => {
Expand Down Expand Up @@ -117,7 +117,7 @@ if (opt.beta) {
tagPrefix: "",
releaseAs: opt.releaseAs,
scripts: {
postchangelog: "node _changelog.mjs",
postchangelog: "node hooks/_changelog.mjs",
},
})
.then(() => {
Expand Down

0 comments on commit dba35fd

Please sign in to comment.