ci: upload dotnet pack artifacts

This commit is contained in:
Oliver Booth 2023-04-02 15:44:10 +01:00
parent fdc0c6aa35
commit 3b47c67a43
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025
3 changed files with 18 additions and 0 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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: