Removed unnecessary versions + fixed ci artifacts

This commit is contained in:
2024-12-22 19:38:16 +01:00
parent 2308e1520d
commit 1bc48b0ba2
8 changed files with 8 additions and 5 deletions

View File

@@ -17,11 +17,14 @@ build:
artifacts:
paths:
- "**/bin/Release"
expire_in: 10 minutes
test:
stage: test
script:
- dotnet test --verbosity normal
dependencies:
- build
publish:
stage: publish
@@ -31,5 +34,8 @@ publish:
- for nupkg in *.nupkg; do dotnet nuget push $nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json; done
only:
- tags
dependencies:
- build
- test
variables:
NUGET_API_KEY: $NUGET_API_KEY