15 lines
268 B
YAML
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 |