24 lines
704 B
YAML
24 lines
704 B
YAML
---
|
||
kind: pipeline
|
||
type: exec
|
||
name: default
|
||
|
||
platform:
|
||
os: linux
|
||
arch: amd64
|
||
|
||
clone:
|
||
# убрано так как сейчас не тестим ничего предварительно а сразу тянем в директорию
|
||
disable: true
|
||
|
||
steps:
|
||
- name: pull into the folduh
|
||
commands:
|
||
- cd /usr/share/repos/$DRONE_REPO_NAME
|
||
- git pull origin $DRONE_COMMIT_BRANCH
|
||
- name: build
|
||
commands:
|
||
- cd /usr/share/repos/$DRONE_REPO_NAME
|
||
- git checkout $DRONE_COMMIT_BRANCH
|
||
- docker build . -t ${DRONE_REPO_NAME}:${DRONE_COMMIT_BRANCH}-"$(git rev-parse --short HEAD)"
|
||
- docker tag ${DRONE_REPO_NAME}:${DRONE_COMMIT_BRANCH}-$(git rev-parse --short HEAD)" ${DRONE_REPO_NAME}:latest |