Publish SOURCE packages to Nuget #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish SOURCE packages to Nuget | ||
on: workflow_dispatch | ||
jobs: | ||
build: | ||
uses: ./.github/workflows/BuildPackages.yml | ||
Check failure on line 7 in .github/workflows/PublishSourcePackagesToNuget.yml GitHub Actions / .github/workflows/PublishSourcePackagesToNuget.ymlInvalid workflow file
|
||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download all artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: nuget-packages | ||
- name: Push to NuGet | ||
run: dotnet nuget push "*.Sources.nupkg" --api-key ${{secrets.InteropTypes_PublishToNuget}} --source https://api.nuget.org/v3/index.json |