Replace gitea-release plugin with curl-based release upload
Uses basic auth (droneci user) and Gitea API directly to create the release and upload the binary asset. 💘 Generated with Crush Assisted-by: Claude Sonnet 4.6 via Crush <crush@charm.land>
This commit is contained in:
@@ -15,16 +15,20 @@ steps:
|
||||
depends_on: [test]
|
||||
|
||||
- name: release
|
||||
image: woodpeckerci/plugin-gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: GITEA_TOKEN
|
||||
base_url: https://git.unkin.net
|
||||
files: node-lookup
|
||||
title: ${CI_COMMIT_TAG}
|
||||
image: alpine/curl
|
||||
environment:
|
||||
DRONECI_PASSWORD:
|
||||
from_secret: DRONECI_PASSWORD
|
||||
commands:
|
||||
- |
|
||||
RELEASE_ID=$(curl -sf -X POST "https://git.unkin.net/api/v1/repos/${CI_REPO}/releases" \
|
||||
-u "droneci:$DRONECI_PASSWORD" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "{\"tag_name\":\"${CI_COMMIT_TAG}\",\"name\":\"${CI_COMMIT_TAG}\"}" \
|
||||
| grep -o '"id":[0-9]*' | head -1 | cut -d: -f2)
|
||||
curl -sf -X POST "https://git.unkin.net/api/v1/repos/${CI_REPO}/releases/${RELEASE_ID}/assets" \
|
||||
-u "droneci:$DRONECI_PASSWORD" \
|
||||
-F "attachment=@node-lookup"
|
||||
backend_options:
|
||||
kubernetes:
|
||||
serviceAccountName: default
|
||||
|
||||
Reference in New Issue
Block a user