Skip to content

Commit

Permalink
Github action debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jgressmann committed Oct 15, 2023
1 parent dee4953 commit 6ca33da
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,24 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/supercan-firmware.tar.xz
asset_name: supercan-firmware.tar.xz
# asset_content_type: application/zip
asset_content_type: application/x-xz

- name: Upload Windows binaries asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/ supercan-win.7z
asset_name: supercan-win.7z
asset_content_type: application/x-7z-compressed

- name: Upload Windows installer asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/ supercan_inst.exe
asset_name: supercan_inst.exe
asset_content_type: application/vnd.microsoft.portable-executable

0 comments on commit 6ca33da

Please sign in to comment.