Files
timerx/.gitlab-ci.yml
T
2023-11-11 08:16:43 +00:00

15 lines
268 B
YAML

stages:
- deploy
deploy_job:
stage: deploy
script:
- ls -la
- git remote -v
- git log
- git remote add github https://${GITHUB_TOKEN}:@github.com/yun-ink/timerx.git
- git remote -v
- git push github master
only:
- master
- tags