4 Commits

Author SHA1 Message Date
argoyle 001642e95b ci: add debug logging for KUBECONFIG_CONTENT
geo-service / build (pull_request) Successful in 1m34s
geo-service / deploy-prod (pull_request) Has been skipped
2026-01-08 08:48:00 +01:00
argoyle 701e9f5292 Merge pull request 'ci: remove KUBECONFIG_CONTENT (runner env var)' (#252) from remove-kubeconfig into master
geo-service / build (push) Successful in 1m20s
geo-service / deploy-prod (push) Successful in 39s
Reviewed-on: #252
2026-01-08 07:31:09 +00:00
argoyle e7bfdf16a6 ci: remove KUBECONFIG_CONTENT (runner env var)
geo-service / build (pull_request) Successful in 2m54s
geo-service / deploy-prod (pull_request) Has been skipped
2026-01-08 08:26:53 +01:00
argoyle c0d5186ad4 Merge pull request 'ci: add KUBECONFIG_CONTENT secret to deploy job' (#251) from kubeconfig-secret into master
geo-service / build (push) Successful in 15s
geo-service / deploy-prod (push) Failing after 37s
Reviewed-on: #251
2026-01-07 21:17:35 +00:00
+9 -1
View File
@@ -15,6 +15,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: buildtool/setup-buildtools-action@v1
- name: Debug KUBECONFIG_CONTENT
run: |
echo "KUBECONFIG_CONTENT length: ${#KUBECONFIG_CONTENT}"
if [ -n "$KUBECONFIG_CONTENT" ]; then
echo "KUBECONFIG_CONTENT is set"
echo "First 50 chars: ${KUBECONFIG_CONTENT:0:50}"
else
echo "KUBECONFIG_CONTENT is NOT set"
fi
- name: Build and push
run: unset GITEA_TOKEN && build && push
@@ -25,7 +34,6 @@ jobs:
env:
BUILDTOOLS_CONTENT: ${{ secrets.BUILDTOOLS_CONTENT }}
GITEA_REPOSITORY: ${{ gitea.repository }}
KUBECONFIG_CONTENT: ${{ secrets.KUBECONFIG_CONTENT }}
environment: prod
steps:
- uses: actions/checkout@v4