fix(release): more fixes

This commit is contained in:
2025-07-12 16:47:22 -05:00
parent 710bdd878a
commit 6a7fcadd2f
3 changed files with 15 additions and 7 deletions

View File

@@ -2,7 +2,8 @@
"git": { "git": {
"commitMessage": "chore(release): v${version}", "commitMessage": "chore(release): v${version}",
"tagName": "v${version}", "tagName": "v${version}",
"requireCleanWorkingDir": true "requireCleanWorkingDir": true,
"addUntrackedFiles": true
}, },
"npm": { "npm": {
"publish": false "publish": false
@@ -24,5 +25,5 @@
"tokenRef": "GITEA_TOKEN" "tokenRef": "GITEA_TOKEN"
}, },
"files": ["package.json"] "files": ["package.json", "CHANGELOG.md"]
} }

View File

@@ -1,6 +1,11 @@
# Changelog ## <small>0.0.3-alpha.1 (2025-07-12)</small>
* chore(release): v0.0.3-alpha.0 ([1172fe8](https://git.tuffraid.net/cowch/logistics_support_tool/commits/1172fe8))
* chore(release): v0.0.3-alpha.1 ([d4575b1](https://git.tuffraid.net/cowch/logistics_support_tool/commits/d4575b1))
* fix(release): something ([b7809c9](https://git.tuffraid.net/cowch/logistics_support_tool/commits/b7809c9))
* c ([b82438f](https://git.tuffraid.net/cowch/logistics_support_tool/commits/b82438f))
## [0.0.3-alpha.2](https://git.tuffraid.net/cowch/logistics_support_tool/compare/v0.0.3-alpha.1...v0.0.3-alpha.2) (2025-07-12)
## <small>0.0.2 (2025-07-12)</small> ## <small>0.0.2 (2025-07-12)</small>
@@ -163,3 +168,6 @@
* feat(starter): intial starter release ([b370cb1](https://git.tuffraid.net/cowch/logistics_support_tool/commits/b370cb1)) * feat(starter): intial starter release ([b370cb1](https://git.tuffraid.net/cowch/logistics_support_tool/commits/b370cb1))
* Initial commit ([e4d3fc9](https://git.tuffraid.net/cowch/logistics_support_tool/commits/e4d3fc9)) * Initial commit ([e4d3fc9](https://git.tuffraid.net/cowch/logistics_support_tool/commits/e4d3fc9))
* Update README.md ([e081c8f](https://git.tuffraid.net/cowch/logistics_support_tool/commits/e081c8f)) * Update README.md ([e081c8f](https://git.tuffraid.net/cowch/logistics_support_tool/commits/e081c8f))

View File

@@ -50,7 +50,7 @@ const result = spawnSync(
"CHANGELOG.md", "CHANGELOG.md",
"-s", "-s",
"-r", "-r",
"0", "1",
], ],
{ stdio: "inherit", shell: true } { stdio: "inherit", shell: true }
); );
@@ -143,7 +143,6 @@ const createOrUpdateRelease = async () => {
return release; return release;
}; };
// Step 4: Upload asset
const uploadAsset = async (release) => { const uploadAsset = async (release) => {
const apiUrl = `https://${GITEA_URL}/api/v1/repos/${GITEA_USERNAME}/${GITEA_REPO}/releases/assets?tag=${release.tag_name}`; const apiUrl = `https://${GITEA_URL}/api/v1/repos/${GITEA_USERNAME}/${GITEA_REPO}/releases/assets?tag=${release.tag_name}`;
const filePath = `releases/release-${fullVersion}.zip`; const filePath = `releases/release-${fullVersion}.zip`;
@@ -182,7 +181,7 @@ const uploadAsset = async (release) => {
(async () => { (async () => {
try { try {
const release = await createOrUpdateRelease(); const release = await createOrUpdateRelease();
await uploadAsset(release); // await uploadAsset(release); // fix this later and just update the readme.
} catch (err) { } catch (err) {
console.error(err); console.error(err);
process.exit(1); process.exit(1);