fix: manual clone with http.extraheader reset for host mode
Release / build (amd64) (push) Failing after 6s
Release / build (arm64) (push) Failing after 4s
Release / generate-latest-json (push) Has been skipped

This commit is contained in:
datadunia
2026-05-07 01:12:45 +07:00
parent 14742b4c27
commit 1633fede7a
+14 -8
View File
@@ -16,10 +16,13 @@ jobs:
matrix:
goarch: [amd64, arm64]
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
submodules: true
# Checkout step removed due to checkout failures. Replaced with manual clone below.
- name: Clone repository with auth
run: |
git config --local http.extraheader "Authorization: Bearer ${{ gitea.token }}"
git clone --recursive https://${{ gitea.server_url }}/hainzero/WGRplane.git app
git config --unset http.extraheader # Reset after use
ls -la app # Debug
- name: Setup Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff
@@ -55,10 +58,13 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
submodules: true
# Checkout step removed due to checkout failures. Replaced with manual clone below.
- name: Clone repository with auth
run: |
git config --local http.extraheader "Authorization: Bearer ${{ gitea.token }}"
git clone --recursive https://${{ gitea.server_url }}/hainzero/WGRplane.git app
git config --unset http.extraheader # Reset after use
ls -la app # Debug
- name: Download all artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093