From f5f520626748dad7dcfd2e99e90b5a11a1b6a7af Mon Sep 17 00:00:00 2001 From: Minoru Osuka Date: Fri, 6 Dec 2024 15:18:12 +0900 Subject: [PATCH] Fix release.yml --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7060acb..6c7676e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,7 +63,10 @@ jobs: - name: Create artifact for Windows if: matrix.platform.runner == 'windows-latest' - run: powershell Compress-Archive -DestinationPath lindera-${{ matrix.features }}-${{ matrix.platform.target }}-${{ github.ref_name }}${{ matrix.platform.archive }} -Path target/${{ matrix.features }}/${{ matrix.platform.target }}/release/liblindera_sqlite${{ matrix.platform.extension }} + # run: powershell Compress-Archive -DestinationPath lindera-${{ matrix.features }}-${{ matrix.platform.target }}-${{ github.ref_name }}${{ matrix.platform.archive }} -Path target/${{ matrix.features }}/${{ matrix.platform.target }}/release/liblindera_sqlite${{ matrix.platform.extension }} + run: | + powershell Compress-Archive -DestinationPath lindera-${{ matrix.features }}-${{ matrix.platform.target }}-${{ github.ref_name }}${{ matrix.platform.archive }} -Path target/${{ matrix.features }}/${{ matrix.platform.target }}/release/liblindera_sqlite${{ matrix.platform.extension }} + ls ./target/${{ matrix.features }}/${{ matrix.platform.target }}/release - name: Create artifact for OSX if: matrix.platform.runner == 'macos-latest'