From 8b084b2fe49699b2b557ae6cabda3ac5ac932ecc Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Mon, 29 Mar 2021 20:59:00 +0100 Subject: [PATCH] Fixes pack build step --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6932799..eccc637 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,8 +26,7 @@ jobs: - name: Test run: dotnet test -c Release - name: Pack - if: matrix.os == 'ubuntu-latest' - run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source -p:PackageVersion=$GITHUB_RUN_ID src/AisParser/AisParser.*proj -o ./artifacts + run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source -p:PackageVersion=$GITHUB_RUN_ID -o ./artifacts - name: Push to MyGet run: dotnet nuget push ./artifacts/*.nupkg --source https://www.myget.org/F/aisparser/api/v3/index.json --api-key ${{ secrets.MYGET_API_KEY }} - name: Artifacts