mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-30 02:48:17 +08:00
37 lines
941 B
YAML
37 lines
941 B
YAML
version: '1.0'
|
|
name: pipeline-20220528
|
|
displayName: docker-hub
|
|
triggers:
|
|
trigger: manual
|
|
push:
|
|
branches:
|
|
precise:
|
|
- dev
|
|
tags:
|
|
prefix:
|
|
- v
|
|
stages:
|
|
- name: stage-1b917201
|
|
displayName: 容器发布
|
|
strategy: naturally
|
|
trigger: auto
|
|
executor: []
|
|
steps:
|
|
- step: execute@docker
|
|
name: execute_by_docker
|
|
displayName: 基于镜像的脚本执行
|
|
image: hub.docker.com/bash:latest
|
|
command:
|
|
- echo 'success!'
|
|
- '# 服务端'
|
|
- docker buildx build --platform linux/amd64,linux/arm64 -t jpomdocker/jpom:2.8.22 -f ./modules/server/DockerfileRelease --push .
|
|
- '#'
|
|
- docker buildx build --platform linux/amd64,linux/arm64 -t jpomdocker/jpom:latest -f ./modules/server/DockerfileRelease --push .
|
|
strategy:
|
|
retry: '0'
|
|
strategy:
|
|
blocking: true
|
|
permissions:
|
|
- role: admin
|
|
members: []
|