You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
344 B
26 lines
344 B
stages:
|
|
- build
|
|
- deploy
|
|
|
|
build-resume:
|
|
stage: build
|
|
script:
|
|
- ./build-pdf-resume.sh
|
|
only:
|
|
- master
|
|
tags:
|
|
- linux
|
|
artifacts:
|
|
paths:
|
|
- DPSResume.pdf
|
|
- ResumeSite.tar.gz
|
|
|
|
deploy-resume:
|
|
stage: deploy
|
|
script:
|
|
- ./package-and-deploy.sh
|
|
only:
|
|
- master
|
|
tags:
|
|
- linux
|
|
|