From 2bfb9b3aa1624f0663dfa9c6810070bc6e70e999 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 19 Aug 2026 23:51:27 -0400 Subject: [PATCH] fix issue --- .gitea/workflows/deploy.yml | 3 +++ .gitea/workflows/tests.yml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 09fe089..4ffd214 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -30,10 +30,13 @@ jobs: GITEA_PACKAGE_OWNER: ${{ secrets.GITEA_PACKAGE_OWNER }} GITEA_PACKAGE_USER: ${{ secrets.GITEAPACKAGEUSER }} GITEA_PACKAGE_TOKEN: ${{ secrets.GITEAPACKAGETOKEN }} + GIT_SSL_NO_VERIFY: 'true' steps: - name: Checkout uses: actions/checkout@v4 + env: + GIT_SSL_NO_VERIFY: 'true' - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 7079e28..35f2700 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -48,6 +48,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + env: + GIT_SSL_NO_VERIFY: 'true' - name: Setup PHP uses: shivammathur/setup-php@v2