mirror of
https://github.com/DarthAffe/HPPH.git
synced 2025-12-12 13:28:37 +00:00
Updated build file
This commit is contained in:
parent
fed16da8ce
commit
6c9c7ef832
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user