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 }} - - -