Leave a Comment
Use dependencies
. With this config test stage will download the untracked files that were created during the build stage:
build:
stage: build
artifacts:
untracked: true
script:
- ./Build.ps1
test:
stage: test
dependencies:
- build
script:
- ./Test.ps1