更新 .gitea/workflows/7zip_update.yml
Some checks failed
7zip_update / update-rules (push) Failing after 12s
zellij_update / update-rules (push) Successful in 16s

This commit is contained in:
2025-10-23 09:21:31 -07:00
parent 67c96351ec
commit 78ceaf2236

View File

@@ -23,13 +23,9 @@ jobs:
- name: 下载并解压7zip
run: |
curl -L "https://www.7-zip.org/a/7z$7Z_VERSION-x86.exe" \
-o "app/7z.exe" \
--fail --silent --show-error
curl -L "https://www.7-zip.org/a/7z$7Z_VERSION.exe" -o "app/7z.exe" --fail --silent --show-error
curl -L "https://www.7-zip.org/a/7z$7Z_VERSION-linux-x64.tar.xz" \
-o "7z.tar.xz" \
--fail --silent --show-error \
curl -L "https://www.7-zip.org/a/7z$7Z_VERSION-linux-x64.tar.xz" -o "7z.tar.xz" --fail --silent --show-error \
&& tar -xvf 7z.tar.xz -C tmp/ \
&& mv tmp/7zz app/ \
&& rm tmp/*
@@ -41,8 +37,6 @@ jobs:
&& mv tmp/7zz app/7zz_arm64 \
&& rm tmp/*
- name: 提交更改
run: |
git config --local user.email "gitea-actions[bot]@users.noreply.nvme.cc"