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 6ca33da commit 19db127
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/supercan-firmware.tar.xz
asset_path: ./artifact/supercan-firmware.tar.xz
asset_name: supercan-firmware.tar.xz
asset_content_type: application/x-xz

Expand All @@ -293,7 +293,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/ supercan-win.7z
asset_path: ./artifact/ supercan-win.7z
asset_name: supercan-win.7z
asset_content_type: application/x-7z-compressed

Expand All @@ -303,6 +303,17 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/ supercan_inst.exe
asset_path: ./artifact/ supercan_inst.exe
asset_name: supercan_inst.exe
asset_content_type: application/vnd.microsoft.portable-executable
asset_content_type: application/vnd.microsoft.portable-executable

- name: Upload SLSA provenance
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./supercan.intoto.jsonl/supercan.intoto.jsonl
asset_name: supercan.intoto.jsonl
asset_content_type: application/vnd.microsoft.portable-executable

0 comments on commit 19db127

Please sign in to comment.