Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5bfa authored Aug 23, 2024
1 parent c423433 commit 924f659
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,13 @@ jobs:
const artifact = artifacts.artifacts.find(a => a.name === 'Appx Packages (${{ env.CONFIGURATION }}, ${{ env.ARCHITECTURE }})');
if (artifact) {
console.log(`Artifact Size: ${artifact.size_in_bytes} bytes`);
if (artifact)
{
console.log('Artifact Size: ${artifact.size_in_bytes} bytes');
core.setOutput("artifact-size", artifact.size_in_bytes);
} else {
}
else
{
console.log('Artifact not found.');
}
Expand Down

0 comments on commit 924f659

Please sign in to comment.