forgeplus/.trustie-pipeline.yml

38 lines
780 B
YAML
Raw Permalink Normal View History

2021-06-25 11:59:52 +08:00
#pipeline
2021-01-20 14:54:41 +08:00
kind: pipeline
type: docker
name: default
platform:
os: linux
2021-06-25 11:59:52 +08:00
arch: amd64
steps:
2021-01-20 14:54:41 +08:00
# 构建Docker镜像并推送到仓库
# 定义镜像Hub路径以及账号密码
- name: Docker镜像构建
image: plugins/docker
settings:
username: username
password: pwd
repo: repoUrl
2021-06-25 11:59:52 +08:00
tags: latest
2021-01-20 14:54:41 +08:00
- name: golang编译
image: golang
commands:
2021-06-25 11:59:52 +08:00
- go build
2021-01-20 14:54:41 +08:00
# 根据实际情况修改主机ip、账号、密码
# 需要将软件包与部署脚本提前上传到远程主机(见文件上传模板)
- name: 远程主机部署
image: appleboy/drone-ssh
settings:
host: 192.168.1.1
username: username
password: 'pasword'
port: 22
commands:
- chmod +x /home/deploy.sh
2021-06-25 11:59:52 +08:00
- ./home/deploy.sh
111