Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jiep committed Jan 28, 2022
1 parent 8847281 commit 20e10d5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,11 @@ jobs:
run: |
upload_url=`cat ./upload_url`
echo ::set-output name=upload_url::$upload_url
ls -lah .
- name: Compress results
run: |
zip -r results.zip *.csv *.txt *.png
zip -r Linux.zip bin/*
- name: Upload to Release
id: upload_to_release
Expand All @@ -178,13 +182,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.set_upload_url.outputs.upload_url }}
asset_path: ${{ matrix.config.artifact }}
asset_name: ${{ matrix.config.artifact }}
asset_content_type: application/x-gtar

- name: Compress results
run: |
zip -r results.zip *.csv *.txt *.png
asset_path: ./Linux.zip
asset_name: Linux.zip
asset_content_type: application/zip

- name: Upload to Release
uses: actions/[email protected]
Expand Down

0 comments on commit 20e10d5

Please sign in to comment.