From 08aa96f1c5d8c42a5ae7de1df05f8201cf1b9d64 Mon Sep 17 00:00:00 2001 From: Aikawa Yataro Date: Fri, 2 Aug 2024 15:06:42 +0000 Subject: [PATCH] ci: don't tar the artifacts since GitHub will archive it anyway --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84b7558a..253df156 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,11 +61,8 @@ jobs: - name: Rename executable file if: ${{ startsWith(matrix.runtime, 'linux-') }} run: mv publish/SourceGit publish/sourcegit - - name: Package program - if: ${{ ! startsWith(matrix.runtime, 'win-') }} - run: tar -cvf sourcegit.${{ matrix.runtime }}.tar -C publish/ . - name: Upload artifact uses: actions/upload-artifact@v4 with: name: sourcegit.${{ matrix.runtime }} - path: ${{ startsWith(matrix.runtime, 'win-') && 'publish' || format('sourcegit.{0}.tar', matrix.runtime) }} + path: publish