Try to fix yaml
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Mark Nellemann 2023-03-03 14:12:47 +01:00
parent a0d1aa4e54
commit b97bac7c30
1 changed files with 27 additions and 27 deletions

View File

@ -4,34 +4,34 @@ name: default
type: docker
steps:
- name: test
image: eclipse-temurin:17-jdk
commands:
- ./gradlew test
- name: push
image: docker:dind
environment:
AUTH_TOKEN: # Gitea access token ENV variable
from_secret: auth # Name of DroneCI secret exposed above
commands:
- sleep 5
- docker ps -a
- docker build -t git.data.coop/${DRONE_REPO_NAME}:${DRONE_TAG} .
- docker push git.data.coop/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}:${DRONE_TAG}
- docker tag git.data.coop/${DRONE_REPO_NAME}:${DRONE_TAG} git.data.coop/${DRONE_REPO_NAME}:latest
- docker push git.data.coop/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}:latest
when:
event:
- tag
- name: test
image: eclipse-temurin:17-jdk
commands:
- ./gradlew test
- name: push
image: docker:dind
environment:
AUTH_TOKEN: # Gitea access token ENV variable
from_secret: auth # Name of DroneCI secret exposed above
commands:
- sleep 5
- docker ps -a
- docker build -t git.data.coop/${DRONE_REPO_NAME}:${DRONE_TAG} .
- docker push git.data.coop/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}:${DRONE_TAG}
- docker tag git.data.coop/${DRONE_REPO_NAME}:${DRONE_TAG} git.data.coop/${DRONE_REPO_NAME}:latest
- docker push git.data.coop/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}:latest
when:
event:
- tag
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
- name: dockersock
temp: {}