fix(release): more bug fixes
This commit is contained in:
23
CHANGELOG.md
23
CHANGELOG.md
@@ -1,22 +1,4 @@
|
|||||||
# Changelog
|
## <small>0.0.2-alpha.2 (2025-07-12)</small>
|
||||||
|
|
||||||
* chore(release): v0.0.2-alpha.1 (a087929)
|
|
||||||
* chore(release): v0.0.2-alpha.0 (f83de9b)
|
|
||||||
* fix(release): more work on the release stuff (233298d)
|
|
||||||
|
|
||||||
## [0.0.2-alpha.1](https://git.tuffraid.net/cowch/logistics_support_tool/compare/v0.0.2-alpha.2...v0.0.2-alpha.1) (2025-07-12)
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **release:** more work on the release stuff ([233298d](https://git.tuffraid.net/cowch/logistics_support_tool/commit/233298daa5850178974be675bb8566fa8c0a8b0a))
|
|
||||||
|
|
||||||
## [0.0.2-alpha.0](https://git.tuffraid.net/cowch/logistics_support_tool/compare/v0.0.2-alpha.2...v0.0.2-alpha.0) (2025-07-12)
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **release:** more work on the release stuff ([233298d](https://git.tuffraid.net/cowch/logistics_support_tool/commit/233298daa5850178974be675bb8566fa8c0a8b0a))
|
|
||||||
|
|
||||||
## <small>0.0.1-alpha.1 (2025-07-12)</small>
|
|
||||||
|
|
||||||
* chore(release): v0.0.2-alpha.2 ([4b0028f](https://git.tuffraid.net/cowch/logistics_support_tool/commits/4b0028f))
|
* chore(release): v0.0.2-alpha.2 ([4b0028f](https://git.tuffraid.net/cowch/logistics_support_tool/commits/4b0028f))
|
||||||
* fix(releases): more fun release stuff ([f33554e](https://git.tuffraid.net/cowch/logistics_support_tool/commits/f33554e))
|
* fix(releases): more fun release stuff ([f33554e](https://git.tuffraid.net/cowch/logistics_support_tool/commits/f33554e))
|
||||||
@@ -73,3 +55,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))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ if (!version) {
|
|||||||
// Load build number from BUILD_NUMBER file
|
// Load build number from BUILD_NUMBER file
|
||||||
let buildNumber = '0';
|
let buildNumber = '0';
|
||||||
try {
|
try {
|
||||||
rawBuild = (await fs.readFile('./BUILD_NUMBER', 'utf8')).trim();
|
rawBuild = (await fs.readFile('../BUILD_NUMBER', 'utf8')).trim();
|
||||||
if (rawBuild) {
|
if (rawBuild) {
|
||||||
const [numPart, namePart] = rawBuild.split('-');
|
const [numPart, namePart] = rawBuild.split('-');
|
||||||
const num = parseInt(numPart, 10);
|
const num = parseInt(numPart, 10);
|
||||||
|
|||||||
Reference in New Issue
Block a user