From 20e10d56c088d3455d3c3e839a5c4e902245e308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ignacio=20Escribano?= Date: Fri, 28 Jan 2022 09:26:40 +0100 Subject: [PATCH] Fix workflow --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c68926f..dcc7a8b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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/upload-release-asset@v1.0.1