fix: clone to subdir then move files to root
Some checks failed
Release / build (push) Failing after 58s

This commit is contained in:
2026-04-07 08:24:47 +08:00
parent a4f3f1fef3
commit 1733d7b1cc

View File

@@ -16,7 +16,10 @@ jobs:
- name: Checkout - name: Checkout
run: | run: |
apk add git apk add git
git clone -b dev https://hub.gaomia.site/titor/yoyo.git . git clone -b dev https://hub.gaomia.site/titor/yoyo.git repo
mv repo/* .
mv repo/.* . 2>/dev/null || true
rmdir repo
- name: Download dependencies - name: Download dependencies
run: go mod download run: go mod download