From ba804cce80e1b08eca6f0c3093cc0eb95e80f255 Mon Sep 17 00:00:00 2001 From: Diogo Mendes Matsubara Date: Mon, 28 Oct 2024 17:36:19 +0100 Subject: [PATCH] fix: use bash shell even on win runners --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4c2c028ae..ea8848155 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -161,10 +161,12 @@ jobs: # Download artifacts client unzips the archive when it downloads, so we double zip, to fulfill expectation of the publish-* actions - name: Zip standalone archives + shell: bash run: | zip -9 zenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-standalone.zip ./build/packages/*.zip - name: Zip deb/rpm archives + shell: bash if: ${{ contains(matrix.build.target, 'linux') }} run: | zip -9 libzenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-debian.zip ./build/packages/*.deb