Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
whiteninja76 authored Jan 16, 2024
1 parent 73d0016 commit b1d071d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
generate_release_notes: true,
});
const releaseFile = "platform-status.zip";
const releaseFile = process.env.RELEASE_NAME;
await github.rest.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release.data.id,
name: "platform-status.zip",
name: releaseFile,
data: await fs.readFileSync(releaseFile),
});
debug: true
Expand Down

0 comments on commit b1d071d

Please sign in to comment.