From 94bb43cc02f85912ff240a7702ab468eeb3d94be Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Thu, 30 Jan 2025 15:34:40 -0800 Subject: [PATCH] Fix ci publish --- .github/workflows/ci.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 860a75e82..d8d08e2be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -168,10 +168,18 @@ jobs: with: name: 'docs-${{ matrix.os }}' path: 'artifacts/docs/' + Merge: + runs-on: ubuntu-latest + needs: build + steps: + - name: Merge Artifacts + uses: actions/upload-artifact/merge@v4 + with: + name: nuget + pattern: nuget-* Publish: - needs: - - Build - uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.3 + needs: Merge + uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.15 secrets: RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}' RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}'