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 19db127 commit 3cb8a49
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
with:
base64-subjects: "${{ needs.collect.outputs.hashes }}"
# Upload provenance to a new release
upload-assets: true
upload-assets: false
provenance-name: supercan.intoto.jsonl


Expand Down 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: ${{ steps.download.outputs.download-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: ${{ steps.download.outputs.download-path }}/artifact/ supercan-win.7z
asset_name: supercan-win.7z
asset_content_type: application/x-7z-compressed

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

Expand All @@ -313,7 +313,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./supercan.intoto.jsonl/supercan.intoto.jsonl
asset_path: ${{ steps.download.outputs.download-path }}/supercan.intoto.jsonl/supercan.intoto.jsonl
asset_name: supercan.intoto.jsonl
asset_content_type: application/vnd.microsoft.portable-executable

0 comments on commit 3cb8a49

Please sign in to comment.