diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d74433..bd969f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,24 +32,26 @@ jobs: - name: Test run: dotnet test HPPH --no-build --verbosity normal --configuration Release + - name: List files + run: tree + - name: Upload Nuget Build Artifact uses: actions/upload-artifact@v4.3.1 with: name: HPPH-Nuget - path: HPPH\bin\*.nupkg + path: bin\*.nupkg if-no-files-found: error - - name: List files - run: tree - - name: Release uses: softprops/action-gh-release@v2.0.4 with: tag_name: ${{ github.event.inputs.version }} generate_release_notes: true - files: HPPH/bin/net8.0/*.dll + files: bin/net8.0/*.dll - name: Nuget Push - id: nuget_push run: dotnet nuget push **\*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json + + - name: Symbols Push + run: dotnet nuget push **\*.snupkg --skip-duplicate --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json