maestria-investigacion/.gitlab-ci.yml

19 lines
601 B
YAML
Raw Normal View History

2021-10-17 19:57:28 -05:00
image: nikazhenya/pecas:latest
pages:
stage: deploy
before_script:
- source $HOME/.bash_profile
- git remote set-url origin https://$GIT_CI_USER:$GIT_CI_PASS@gitlab.com/$CI_PROJECT_PATH.git
- git config --global user.email "bot@perro.tuerto"
- git config --global user.name "Perro en la Matrix"
2021-11-07 18:56:09 -06:00
- git checkout master
2021-10-17 19:57:28 -05:00
script:
2021-11-07 18:41:24 -06:00
- ruweb https://pad.programando.li/f4lRqEUYT4meGRdVHdxQNA/download
2021-10-17 19:57:28 -05:00
after_script:
2021-10-17 22:05:44 -05:00
- git add . && git commit -m "Multipublicación automatizada realizada." && git push origin master
2021-10-17 19:57:28 -05:00
artifacts:
paths:
- public
only:
- master