Files
2023-05-06 11:52:21 +02:00

20 lines
708 B
JSON

{
"gitSiteUrl": "https://www.github.com/tauri-apps/tauri-action/",
"packages": {
"action": {
"path": ".",
"publish": [
"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 -l \"v${ pkgFile.version }\" | sed s/v//",
"postversion": ["pnpm install --no-optional", "pnpm build"],
"assets": false,
"createRelease": true,
"version": true
}
}
}