service-clamav/.drone.yml
Glenn Y. Rolland d7a7cb2b9a
All checks were successful
continuous-integration/drone/push Build is passing
ci: Fix pipeline name
2023-02-03 11:56:38 +01:00

85 lines
1.8 KiB
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: debug
image: alpine
environment:
commands:
- 'echo "Repository: glenux/service-clamav"'
- '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-clamav
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
cache_from: "glenux/service-clamav:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-clamav
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-clamav:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-clamav
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-clamav:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-clamav
tags: latest
purge: false
when:
branch:
- master
# volumes:
# - name: cache
# temp: {}
#
---
kind: pipeline
type: docker
name: cron
steps:
- name: check:update
image: alpine
environment:
commands:
- 'echo "Repository: glenux/service-clamav"'
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'