Disable git SSL verify in CI for self-hosted Gitea.
Tests / test (push) Failing after 5m4s
Tests / build-and-push-image (push) Has been skipped

This commit is contained in:
melabidi
2026-07-31 13:57:32 -04:00
parent 843fa559bb
commit ccd24b2f6b
+5
View File
@@ -10,6 +10,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
# Self-hosted Gitea uses an untrusted TLS cert on the runner
GIT_SSL_NO_VERIFY: "true"
steps:
- name: Check out repository
@@ -37,6 +40,8 @@ jobs:
runs-on: ubuntu-latest
needs: test
if: gitea.event_name == 'push'
env:
GIT_SSL_NO_VERIFY: "true"
steps:
- name: Check out repository