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 0132ede commit 1188c57
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,15 @@ jobs:
const release = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: "${{ github.ref_name }}",
tag_name: "${{ github.ref_name }}-${{github.run_number}}",
generate_release_notes: true,
});
await github.rest.repos.uploadReleaseAsset({
owner: context.repo.owner,
repo: context.repo.repo,
release_id: release.data.id,
name: platform-status.zip,
data: `@build/platform-status.zip`,
});
debug: false
result-encoding: "json"

0 comments on commit 1188c57

Please sign in to comment.