From d2c6d76a153f1bcac2f72922661732825b034e85 Mon Sep 17 00:00:00 2001 From: Chad Tolkien Date: Tue, 17 Jan 2023 18:32:44 +1000 Subject: [PATCH] yaml --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 2e381e4..d6db3b9 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -25,7 +25,7 @@ jobs: run: dotnet test --no-build --verbosity normal - name: Pack if: ${{ github.ref == 'refs/heads/master' }} - run: dotnet pack --configuration release --output ${{ github.workspace}}/artifact/ --version-suffix ${{ github.GITHUB_SHA }} + run: dotnet pack --configuration release --output ${{ github.workspace}}/artifact/ --version-suffix ${{ github.sha }} - name: Push if: ${{ github.ref == 'refs/heads/master' }} run: dotnet nuget push ${{ github.workspace}}/artifact/*.nupkg --source https://nuget.pkg.github.com/ctolkien/index.json --api-key ${GITHUB_TOKEN} --skip-duplicate