Skip to content

Commit

Permalink
fixed upload script
Browse files Browse the repository at this point in the history
  • Loading branch information
biw committed Jul 28, 2023
1 parent a0ffb67 commit 12862fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
const fs = require('fs');
const release_id = '${{ steps.create_release.outputs.id }}';
for (let file of await fs.readdirSync('./artifact')) {
if (path.extname(file) === '.zip') {
if (path.extname(file) === '.exe') {
console.log('uploadReleaseAsset', file);
await github.repos.uploadReleaseAsset({
owner: context.repo.owner,
Expand Down

0 comments on commit 12862fc

Please sign in to comment.