Skip to content

Commit

Permalink
ci: fix covector config...
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed May 4, 2023
1 parent e5b5263 commit 8ddfe6f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .changes/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
"action": {
"path": ".",
"publish": [
"git tag v${ pkgFile.versionMajor } -f",
"git tag v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
"git tag -a -m \"v${ pkgFile.version }\" v${ pkgFile.version }",
"git tag -a -m \"v${ pkgFile.versionMajor }.${ pkgFile.versionMinor }\" v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
"git tag -a -m \"v${ pkgFile.versionMajor }\" v${ pkgFile.versionMajor } -f",
"git push --tags -f"
],
"getPublishedVersion": "git tag -a -m \"v${ pkgFile.version }\" v${ pkgFile.version } 2>/dev/null || echo ${ pkgFile.version }",
"getPublishedVersion": "git tag -l \"v${ pkgFile.version }\"",
"postversion": ["pnpm install --no-optional", "pnpm build"],
"assets": false,
"createRelease": true,
Expand Down

0 comments on commit 8ddfe6f

Please sign in to comment.