Private
Public Access
1
0

ci: fix repo path from echo/ to git-echo/ in checkout URLs
All checks were successful
CI Pipeline / Rust Format Check (pull_request) Successful in 5s
CI Pipeline / Clippy Lints (pull_request) Successful in 1m0s
CI Pipeline / Rust Unit Tests (pull_request) Successful in 1m22s
CI Pipeline / Security Audit (pull_request) Successful in 5s
CI Pipeline / Frontend Lint & Type Check (pull_request) Successful in 15s
CI Pipeline / Build .deb & Release (pull_request) Has been skipped

The CI workflow used echo/linux_patch_manager for archive downloads
but the repo is owned by git-echo. This caused all CI jobs to fail
with "gzip: stdin: not in gzip format" because curl received a
404 HTML page instead of a tarball.
This commit is contained in:
2026-05-22 03:24:09 +00:00
parent 3925cb48c1
commit ee5b8d5a6c

14
.gitea/workflows/ci.yml Normal file → Executable file
View File

@ -27,7 +27,7 @@ jobs:
run: |
TOKEN="${{ secrets.GITEATOKEN }}"
curl -sf -H "Authorization: token ${TOKEN}" \
"https://gitea-lxc.moon-dragon.us/echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
"https://gitea-lxc.moon-dragon.us/git-echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
-o repo.tar.gz
tar xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
@ -61,7 +61,7 @@ jobs:
run: |
TOKEN="${{ secrets.GITEATOKEN }}"
curl -sf -H "Authorization: token ${TOKEN}" \
"https://gitea-lxc.moon-dragon.us/echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
"https://gitea-lxc.moon-dragon.us/git-echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
-o repo.tar.gz
tar xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
@ -94,7 +94,7 @@ jobs:
run: |
TOKEN="${{ secrets.GITEATOKEN }}"
curl -sf -H "Authorization: token ${TOKEN}" \
"https://gitea-lxc.moon-dragon.us/echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
"https://gitea-lxc.moon-dragon.us/git-echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
-o repo.tar.gz
tar xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
@ -126,7 +126,7 @@ jobs:
run: |
TOKEN="${{ secrets.GITEATOKEN }}"
curl -sf -H "Authorization: token ${TOKEN}" \
"https://gitea-lxc.moon-dragon.us/echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
"https://gitea-lxc.moon-dragon.us/git-echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
-o repo.tar.gz
tar xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
@ -171,7 +171,7 @@ jobs:
run: |
TOKEN="${{ secrets.GITEATOKEN }}"
curl -sf -H "Authorization: token ${TOKEN}" \
"https://gitea-lxc.moon-dragon.us/echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
"https://gitea-lxc.moon-dragon.us/git-echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
-o repo.tar.gz
tar xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
@ -207,7 +207,7 @@ jobs:
run: |
TOKEN="${{ secrets.GITEATOKEN }}"
curl -sf -H "Authorization: token ${TOKEN}" \
"https://gitea-lxc.moon-dragon.us/echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
"https://gitea-lxc.moon-dragon.us/git-echo/linux_patch_manager/archive/${GITHUB_SHA}.tar.gz" \
-o repo.tar.gz
tar xzf repo.tar.gz --strip-components=1
rm repo.tar.gz
@ -261,7 +261,7 @@ jobs:
env:
GITEA_TOKEN: ${{ secrets.GITEATOKEN }}
GITEA_URL: https://gitea-lxc.moon-dragon.us
GITEA_REPO: echo/linux_patch_manager
GITEA_REPO: git-echo/linux_patch_manager
run: |
VERSION=$(grep '^version' Cargo.toml | head -1 | sed 's/.*=.*"\(.*\)"/\1/')
DEB=$(ls linux-patch-manager_*.deb)