23 lines
709 B
YAML
23 lines
709 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
#platform:
|
|
# os: linux
|
|
# arch: amd64
|
|
|
|
steps:
|
|
- name: jpackage
|
|
image: docker.io/eclipse-temurin:17
|
|
environment:
|
|
AUTH_TOKEN: # Gitea access token ENV variable
|
|
from_secret: AUTH_TOKEN # Name of DroneCI secret exposed above
|
|
commands:
|
|
- apt-get update && apt-get install -y dpkg-dev rpm unzip zip curl
|
|
- ./gradlew --no-daemon clean build jpackage
|
|
- for file in build/jpackage/*.* ; do curl -s --user "$${AUTH_TOKEN}" --upload-file "$${file}" "https://git.data.coop/api/packages/${DRONE_REPO_OWNER}/generic/${DRONE_REPO_NAME}/${DRONE_TAG}/$(basename $file)" ; done
|
|
when:
|
|
event:
|
|
- tag
|