You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CleanFlashInstaller/.gitlab-ci.yml

16 lines
340 B
YAML

stages:
- build
variables:
MSBUILD_TARGET: 'CleanFlashInstaller/CleanFlashInstaller.csproj'
build:
stage: build
script:
- '& nuget restore' # restore Nuget dependencies
- '& msbuild "$env:MSBUILD_TARGET" /p:Configuration=Release'
artifacts:
paths:
- 'CleanFlashInstaller/bin/Release/*.exe'
expire_in: never