From ae65551d30db3dc379fdc307858d9de44c05d8aa Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Fri, 11 Nov 2022 11:49:13 +0100 Subject: [PATCH] fix workflow --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73fa86b..3a83569 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Verify commit exists in origin/main run: | git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/* @@ -20,4 +20,4 @@ jobs: - name: Pack run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output . - name: Push - run: dotnet nuget push ViteProxy.${VERSION}.nupkg --api-key ${secrets.NUGET_PUSH_API_KEY} \ No newline at end of file + run: dotnet nuget push ViteProxy.${VERSION}.nupkg --api-key ${{ secrets.NUGET_PUSH_API_KEY }} \ No newline at end of file