From 1d361dc81857cc9925a336f756926eef6d5c040f Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:18:43 +0900 Subject: [PATCH] ci: fix upload artifact to use Cysharp/Actions --- .github/workflows/build-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 07c0b98..99885ea 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -36,10 +36,11 @@ jobs: - run: dotnet build -c Release -p:Version=${{ inputs.tag }} - run: dotnet test -c Release --no-build - run: dotnet pack -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish - - uses: actions/upload-artifact@v3 + - uses: Cysharp/Actions/.github/actions/upload-artifact@main with: name: nuget path: ./publish + retention-days: 1 build-unity: needs: [update-packagejson]