mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
20 lines
708 B
JSON
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
|
|
}
|
|
}
|
|
}
|