84 lines
1.8 KiB
YAML
84 lines
1.8 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: debug
|
|
image: alpine
|
|
environment:
|
|
|
|
commands:
|
|
- 'echo "Repository: glenux/service-n8n"'
|
|
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'
|
|
|
|
- name: publish:commit_sha
|
|
image: plugins/docker
|
|
# pull: never
|
|
# volumes:
|
|
# - name: cache
|
|
# path: /stupid
|
|
environment:
|
|
DOCKER_REPO: glenux/service-n8n
|
|
settings:
|
|
username:
|
|
from_secret: DOCKERHUB_USERNAME
|
|
password:
|
|
from_secret: DOCKERHUB_PASSWORD
|
|
cache_from: "glenux/service-n8n:latest_${DRONE_BRANCH/\\//-}"
|
|
repo: glenux/service-n8n
|
|
tags: "${DRONE_COMMIT_SHA:0:8}"
|
|
purge: false
|
|
|
|
- name: publish:commit_branch
|
|
image: plugins/docker
|
|
# volumes:
|
|
# - name: cache
|
|
# path: /stupid
|
|
settings:
|
|
username:
|
|
from_secret: DOCKERHUB_USERNAME
|
|
password:
|
|
from_secret: DOCKERHUB_PASSWORD
|
|
cache_from: "glenux/service-n8n:latest_${DRONE_BRANCH/\\//-}"
|
|
repo: glenux/service-n8n
|
|
tags: "latest_${DRONE_BRANCH/\\//-}"
|
|
purge: false
|
|
when:
|
|
branch:
|
|
- "master"
|
|
- "develop"
|
|
- "feature/*"
|
|
|
|
- name: publish:latest
|
|
image: plugins/docker
|
|
settings:
|
|
username:
|
|
from_secret: DOCKERHUB_USERNAME
|
|
password:
|
|
from_secret: DOCKERHUB_PASSWORD
|
|
cache_from: "glenux/service-n8n:latest_${DRONE_BRANCH/\\//-}"
|
|
repo: glenux/service-n8n
|
|
tags: latest
|
|
purge: false
|
|
when:
|
|
branch:
|
|
- master
|
|
|
|
# volumes:
|
|
# - name: cache
|
|
# temp: {}
|
|
#
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: sheduled
|
|
|
|
steps:
|
|
- name: check:update
|
|
image: alpine
|
|
environment:
|
|
|
|
commands:
|
|
- 'echo "Repository: glenux/service-n8n"'
|
|
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'
|