diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 28cfe86..cd2bbca 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -42,6 +42,12 @@ jobs: - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate + - name: Upload Build Artifacts + uses: actions/upload-artifact@v3 + with: + name: build + path: build/ + - name: Checkout upm branch uses: actions/checkout@v3 with: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 9642fcd..2fa4c6e 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -42,6 +42,12 @@ jobs: - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate + - name: Upload Build Artifacts + uses: actions/upload-artifact@v3 + with: + name: build + path: build/ + - name: Create Release uses: "marvinpinto/action-automatic-releases@latest" with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1064f6f..9708802 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,6 +42,12 @@ jobs: - name: Push NuGet Package to nuget.org run: dotnet nuget push "build/*" --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate + - name: Upload Build Artifacts + uses: actions/upload-artifact@v3 + with: + name: build + path: build/ + - name: Create Release uses: "marvinpinto/action-automatic-releases@latest" with: