tauri-build/.changes/config.json
2022-07-16 12:21:12 +02:00

27 lines
648 B
JSON

{
"gitSiteUrl": "https://github.com/JonasKruckenberg/tauri-build/",
"pkgManagers": {
"github action": {
"version": true,
"preversion": [
"pnpm install --no-optional",
"pnpm build",
"pnpm package"
],
"getPublishedVersion": "git describe --tags --abbrev=0",
"publish": [
"git tag v${ pkgFile.versionMajor } -f",
"git tag v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
"git tag v${ pkgFile.version } -f",
"git push --tags -f"
]
}
},
"packages": {
"tauri-build": {
"path": ".",
"manager": "github action"
}
}
}