docmachine/.drone.yml

60 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2023-01-16 10:56:01 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: debug
image: alpine
environment:
commands:
2023-01-16 11:00:40 +00:00
- 'echo "Repository: glenux/docmachine"'
2023-01-16 10:56:01 +00:00
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'
- name: publish:commit_branch
image: plugins/docker
# volumes:
# - name: cache
# path: /stupid
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2023-01-16 11:00:40 +00:00
cache_from: "glenux/docmachine:latest_${DRONE_BRANCH/\\//-}"
2023-01-16 10:59:23 +00:00
context: .
dockerfile: docker/Dockerfile
2023-01-16 11:00:40 +00:00
repo: glenux/docmachine
2023-01-16 11:18:02 +00:00
tags:
- "latest_${DRONE_BRANCH/\\//-}"
- "${DRONE_COMMIT_SHA:0:8}"
2023-01-16 10:56:01 +00:00
purge: false
when:
branch:
- "master"
- "develop"
- "feature/*"
- name: publish:latest
image: plugins/docker
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
2023-01-16 11:00:40 +00:00
cache_from: "glenux/docmachine:latest_${DRONE_BRANCH/\\//-}"
2023-01-16 10:59:23 +00:00
context: .
dockerfile: docker/Dockerfile
2023-01-16 11:00:40 +00:00
repo: glenux/docmachine
2023-01-16 10:56:01 +00:00
tags: latest
purge: false
when:
branch:
- master
# volumes:
# - name: cache
# temp: {}
#