From 0d2630dd5017c0c97cefb4587b65ab4c55d67372 Mon Sep 17 00:00:00 2001 From: "David G. Moore, Jr" Date: Sat, 4 Nov 2023 04:50:57 -0400 Subject: [PATCH] Update pack.yml --- .github/workflows/pack.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml index ce8271c..9b41d7c 100644 --- a/.github/workflows/pack.yml +++ b/.github/workflows/pack.yml @@ -16,11 +16,11 @@ jobs: steps: - name: Checkout the repository being compiled - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v3 with: path: Repo - name: Checkout the Packages repository alongside the one being compiled - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v3 with: repository: dgmjr-io/Packages path: Packages @@ -37,7 +37,7 @@ jobs: - name: Build run: dotnet build Repo/src/DgmjrSdk.nuproj --no-restore -c:Release - name: Upload the NuGet Package - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v3.1.2 with: # Artifact name name: DgmjrSdk-NuGetPackage @@ -69,6 +69,3 @@ jobs: - name: Publish NuGet DGMJR-IO private feed shell: bash run: dotnet nuget push **/*.nupkg --source dgmjr-io --api-key ${{ secrets.PROGET_API_KEY }} - - -