From 48c93064016508fff87deb2819416f5f46eafbc7 Mon Sep 17 00:00:00 2001 From: justinwoo Date: Tue, 28 Feb 2023 16:17:15 +0200 Subject: [PATCH] Revert "don't archive artifact upload" This reverts commit aa97dc0b547fa98ceb54e5e1733b01efb4af5fad. --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e08dca..12d8207 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,8 +35,11 @@ jobs: - name: Test run: ./out/tie --help + - name: Prepare archive + run: tar -zcvf ./${{ matrix.os }}.tar.gz -C out tie + - name: Upload build artifact uses: actions/upload-artifact@v3 with: - name: ${{ matrix.os }} - path: ./out/tie + name: ${{ matrix.os }}-binary + path: ${{ matrix.os }}.tar.gz