From b8bb034f91dd3781919cd7b249c95b9eb532ef61 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 3 Dec 2020 16:56:39 +0200 Subject: [PATCH] binary_artifact.yml: restore top level v_{linux,macos,windows}/ folder in the .zip files. --- .github/workflows/binary_artifact.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/binary_artifact.yml b/.github/workflows/binary_artifact.yml index b6390f2512..a7f5e6f20d 100644 --- a/.github/workflows/binary_artifact.yml +++ b/.github/workflows/binary_artifact.yml @@ -118,11 +118,12 @@ jobs: path: ./${{ matrix.version }} - name: Build Zip Archives run: | - cd ${{ matrix.version }}/ + mv ${{ matrix.version }}/ v_${{ matrix.version }}/ + cd v_${{ matrix.version }}/ chmod 755 v || true chmod 755 v.exe || true - zip -r9 --symlinks ../v_${{ matrix.version }}.zip ./* cd .. + zip -r9 --symlinks v_${{ matrix.version }}.zip ./v_${{ matrix.version }}/* - name: Get short tag name uses: jungwinter/split@v1 id: split