Skip to content

Commit

Permalink
update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Puyodead1 committed Dec 22, 2023
1 parent 9d44ad8 commit a3689f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ async function run(): Promise<void> {
core.setOutput('releaseUploadUrl', releaseData.uploadUrl);
core.setOutput('releaseId', releaseData.id.toString());
core.setOutput('releaseHtmlUrl', releaseData.htmlUrl);
core.setOutput('appVersion', info.version.split('+')[0]);
core.setOutput('appVersion', info.version);
}

if (releaseId) {
Expand Down Expand Up @@ -208,7 +208,7 @@ async function run(): Promise<void> {
await uploadVersionJSON({
owner,
repo,
version: info.version.split('+')[0],
version: info.version,
notes: body,
tagName,
releaseId,
Expand Down

0 comments on commit a3689f6

Please sign in to comment.