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