2 Commits

Author SHA1 Message Date
openhands
e433d98581 Add Test Gitea Login step to verify credentials
Some checks failed
ci/woodpecker/manual/build/3 Pipeline failed
ci/woodpecker/manual/build/1 Pipeline failed
ci/woodpecker/manual/build/2 Pipeline failed
- New step added to verify Gitea login during 'push' and 'manual' events.
- Includes 'exit 1' to fail the pipeline immediately after verification.

Co-authored-by: openhands <openhands@all-hands.dev>
2026-04-10 15:53:54 +00:00
openhands
2cf3926ebb Fix Woodpecker CI pipeline: explicitly set GITEA_SERVER_URL and remove 'set' command
Some checks failed
ci/woodpecker/push/build/2 Pipeline was canceled
ci/woodpecker/push/build/1 Pipeline was canceled
ci/woodpecker/push/build/3 Pipeline was canceled
- Added GITEA_SERVER_URL to the Release step to fix login failures.
- Removed 'set' command from the Prepare step to protect sensitive environment variables.

Co-authored-by: openhands <openhands@all-hands.dev>
2026-04-10 15:35:42 +00:00

View File

@@ -50,3 +50,17 @@ steps:
from_secret: gitea_token
depends_on:
- Build for ${SHORT}
- name: Test Gitea Login
image: img.kie.rs/jjkiers/rust-crossbuild:rust1.79.0-zig0.11.0-zig
when:
- event: [manual, push]
environment:
GITEA_SERVER_URL: https://code.kiers.eu
GITEA_SERVER_TOKEN:
from_secret: gitea_token
commands:
- scripts/install_tea.sh linux-amd64 https://gitea.com/api/v1/repos/gitea/tea/releases/latest
- ./tea login add
- ./tea login ls
- exit 1