maestria-investigacion/.gitlab-ci.yml

21 lines
612 B
YAML
Raw Normal View History

2021-04-20 14:59:48 -05:00
image:
name: nikazhenya/pecas-pandoc
entrypoint: ["/bin/sh", "-c"]
2021-04-11 01:13:06 -05:00
pages:
stage: deploy
2021-04-25 01:15:52 -05:00
before_script:
- git remote set-url origin https://USERNAME:${CI_PUSH_TOKEN}@gitlab.com/maestria-investigacion.git
- git config --global user.email 'hi@perrotuerto.blog'
- git config --global user.name 'Perro en la Matrix'
- git checkout -B master
2021-04-11 01:13:06 -05:00
script:
2021-04-21 11:26:30 -05:00
- curl https://pad.programando.li/rweb/download | ruby
2021-04-25 01:15:52 -05:00
after_script:
- git commit -m 'Multipublicación automatizada realizada.'
- git push --follow-tags origin master
2021-04-11 01:13:06 -05:00
artifacts:
paths:
- public
only:
- master