This repository has been archived on 2025-05-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novaloop.update-tag/.gitlab-ci.yml
2021-11-04 13:38:51 +01:00

19 lines
498 B
YAML

stages:
- test
- publish
running tests for tag:
image: mcr.microsoft.com/dotnet/sdk:5.0
stage: test
script:
- dotnet test tests/update-tag.tests
publish to nuget:
only:
- /^v+\d*.\d*.\d*$/ # gets triggered if the commit tag is in the form n.n.n where n is any number
image: mcr.microsoft.com/dotnet/sdk:5.0
stage: publish
script:
- dotnet pack src/Cli -o ./packaged
- dotnet nuget push ./packaged/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json