Multiple steps
continuous-integration/drone/push Build encountered an error
Details
continuous-integration/drone/push Build encountered an error
Details
parent
b5c6392c34
commit
1f9d566474
50
.drone.yml
50
.drone.yml
|
@ -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
|
||||
- name: system
|
||||
temp: {}
|
Loading…
Reference in New Issue