Dont launch build job when pipeline is user-triggered
This commit is contained in:
parent
79ec85fcd4
commit
fffa699c3e
1 changed files with 6 additions and 0 deletions
|
@ -22,6 +22,9 @@ stages:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
stage: build
|
stage: build
|
||||||
|
except:
|
||||||
|
- schedules
|
||||||
|
- web
|
||||||
before_script:
|
before_script:
|
||||||
- npm ci
|
- npm ci
|
||||||
script:
|
script:
|
||||||
|
@ -31,6 +34,9 @@ build:
|
||||||
|
|
||||||
# test:
|
# test:
|
||||||
# stage: test
|
# stage: test
|
||||||
|
# except:
|
||||||
|
# - schedules
|
||||||
|
# - web
|
||||||
# before_script:
|
# before_script:
|
||||||
# - npm ci
|
# - npm ci
|
||||||
# script:
|
# script:
|
||||||
|
|
Loading…
Reference in a new issue