nothing changes
```
This commit is contained in:
Tunglies 2025-03-11 01:15:37 +08:00
parent d001bbc2eb
commit f6b9ccc774

View File

@ -210,6 +210,10 @@ async function processRelease(github, options, tag, isAlpha) {
// Get the appropriate updater release based on isAlpha flag // Get the appropriate updater release based on isAlpha flag
const releaseTag = isAlpha ? ALPHA_TAG_NAME : UPDATE_TAG_NAME; const releaseTag = isAlpha ? ALPHA_TAG_NAME : UPDATE_TAG_NAME;
console.log(
`Processing ${isAlpha ? "alpha" : "stable"} release:`,
releaseTag,
);
try { try {
const { data: updateRelease } = await github.rest.repos.getReleaseByTag({ const { data: updateRelease } = await github.rest.repos.getReleaseByTag({