We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3e4023 commit bc4858bCopy full SHA for bc4858b
1 file changed
.github/workflows/default.yml
@@ -16,13 +16,15 @@ jobs:
16
dotnet-version: 6.x
17
- name: Install dependencies
18
run: dotnet restore
19
+ - name: Tests
20
+ run: dotnet test
21
- name: Build
22
run: dotnet build -c Release
23
- name: Upload NuGet Artifact
24
uses: actions/upload-artifact@v2
25
with:
26
name: Fmod5Sharp.nupkg
- path: bin/Release/*.nupkg
27
+ path: Fmod5Sharp/bin/Release/*.nupkg
28
- name: Upload to NuGet
29
if: contains(github.event.head_commit.message, '[publish]') == true
- run: dotnet nuget push ./bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY
30
+ run: dotnet nuget push ./Fmod5Sharp/bin/Release/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_API_KEY
0 commit comments