tauri-build/.changes/config.json
Jonas Kruckenberg 436aeb79fb Revert "Update config.json"
This reverts commit 82a38f256e5302a6364004f34a27e6089f350e7b.
2023-09-09 23:37:53 +02:00

27 lines
669 B
JSON

{
"gitSiteUrl": "https://github.com/JonasKruckenberg/tauri-build/",
"pkgManagers": {
"github action": {
"version": true,
"preversion": [
"pnpm install --no-optional --no-frozen-lockfile",
"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"
}
}
}