mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-12 17:32:30 +00:00
18 lines
280 B
YAML
18 lines
280 B
YAML
stages:
|
|
- test
|
|
- release
|
|
variables:
|
|
GIT_SSL_NO_VERIFY: "true"
|
|
ErrorActionPreference: STOP
|
|
Test:
|
|
stage: test
|
|
script:
|
|
- .\build.ps1 -Tasks 'test'
|
|
except:
|
|
- master
|
|
Release:
|
|
stage: release
|
|
script:
|
|
- .\build.ps1 -Tasks 'test','release'
|
|
only:
|
|
- master
|