From a7fe2e960a200509e160ca9b2ccf55dc86d6f3f4 Mon Sep 17 00:00:00 2001 From: Ben Hall Date: Mon, 5 Feb 2024 13:19:04 -0500 Subject: [PATCH] testing --- .github/workflows/release_lib.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_lib.yml b/.github/workflows/release_lib.yml index e2590bb..bed2bab 100644 --- a/.github/workflows/release_lib.yml +++ b/.github/workflows/release_lib.yml @@ -47,7 +47,7 @@ jobs: cd /app ./build/coderdbc -rw -dbc /dbc/hytech.dbc -out /out -drvname hytech mkdir -p ${{ github.workspace }}/out/ - zip -r ${{ github.workspace }}/out/can_lib.zip /out + tar -cvf ${{ github.workspace }}/out/can_lib.tar /out - name: Create Release id: create_release @@ -66,7 +66,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ${{ github.workspace }}/out/can_lib.zip - asset_name: can_lib.zip + asset_path: ${{ github.workspace }}/out/can_lib.tar + asset_name: can_lib asset_content_type: application/zip