ci: update
Some checks failed
Generate Checksums / checksums (push) Has been cancelled

This commit is contained in:
耗子 2025-02-28 01:50:18 +08:00
parent fd11f1e28d
commit 8ff32aef2f
Signed by: haozi
GPG Key ID: C964D7226D045DAA

View File

@ -16,7 +16,7 @@ jobs:
rm -rf /tmp/repo || true rm -rf /tmp/repo || true
git clone --depth 1 ${{ github.server_url }}/${{ github.repository }}.git /tmp/repo git clone --depth 1 ${{ github.server_url }}/${{ github.repository }}.git /tmp/repo
cd /tmp/repo cd /tmp/repo
git checkout ${{ github.ref }} git checkout ${{ github.ref_name }}
git lfs install --local git lfs install --local
git lfs pull git lfs pull
IFS=$'\n' IFS=$'\n'
@ -30,5 +30,5 @@ jobs:
git config --global user.email "ci@haozi.net" git config --global user.email "ci@haozi.net"
git config --global user.password "${{ secrets.GITHUB_TOKEN }}" git config --global user.password "${{ secrets.GITHUB_TOKEN }}"
git commit -m "chore: update checksums" || true git commit -m "chore: update checksums" || true
git push origin ${{ github.ref }} git push origin ${{ github.ref_name }}
rm -rf /tmp/repo rm -rf /tmp/repo