Multiple steps
continuous-integration/drone/push Build encountered an error Details

pull/5/head
jhot 2023-11-01 09:43:44 -06:00
parent b5c6392c34
commit 1f9d566474
Signed by: jhot
GPG Key ID: 612ED70E22571DD4
1 changed files with 49 additions and 3 deletions

View File

@ -3,21 +3,67 @@ type: docker
name: ci
steps:
- name: build
- name: setup
image: debian:12
volumes:
- name: system
path: /
- name: dockersocket
path: /var/run/docker.sock
commands:
- TAG=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name
- apt-get update && apt-get install -y curl # install dependencies from apt
- curl -fsSL https://get.docker.com -o get-docker.sh # install docker
- sh ./get-docker.sh
- docker buildx create --name ${DRONE_COMMIT_SHA}${DRONE_BUILD_NUMBER} --use
- sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d # install task
- ./bin/task build # build the docker image
- name: build
image: debian:12
volumes:
- name: system
path: /
- name: dockersocket
path: /var/run/docker.sock
commands:
- tag=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name
- ./bin/task build TAG=$tag # build the docker image
- name: publish tag
image: debian:12
environment:
PASSOWRD:
from_secret: FORGEJO_PASSWORD
volumes:
- name: system
path: /
- name: dockersocket
path: /var/run/docker.sock
commands:
- docker login -u drone -p ${PASSWORD}
- tag=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name
- ./bin/task push TAG=$tag
when:
event:
- tag
- name: publish main
image: debian:12
environment:
PASSOWRD:
from_secret: FORGEJO_PASSWORD
volumes:
- name: system
path: /
- name: dockersocket
path: /var/run/docker.sock
commands:
- docker login -u drone -p ${PASSWORD}
- ./bin/task push TAG=main
when:
branch:
- main
volumes:
- name: dockersocket
host:
path: /var/run/docker.sock
path: /var/run/docker.sock
- name: system
temp: {}