fix: use https instead of http for gitea API and clones
Release / Build & Release (push) Successful in 15m53s

This commit is contained in:
2026-07-06 13:47:23 +08:00
parent 968808df6d
commit af6870f6a9
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ jobs:
env:
GITEA_TOKEN: ${{ secrets.TEKTON_RELEASE_TOKEN }}
run: |
git clone --depth 1 http://god:$GITEA_TOKEN@git.klud.top/danchie/tekton.git .
git clone --depth 1 https://god:$GITEA_TOKEN@git.klud.top/danchie/tekton.git .
git config user.name "god"
git config user.email "god@noreply.git.klud.top"
@@ -61,7 +61,7 @@ jobs:
git init
git config user.name "god"
git config user.email "god@noreply.git.klud.top"
git remote add origin http://god:$GITEA_TOKEN@git.klud.top/danchie/tekton.git
git remote add origin https://god:$GITEA_TOKEN@git.klud.top/danchie/tekton.git
git checkout -b patches
git add .
git commit -m "patch ${{ github.event.inputs.version }}"