From a80c49593d6921b4badac793e8b5a88500d2b0ad Mon Sep 17 00:00:00 2001 From: Breadway Date: Sun, 16 Aug 2026 13:50:12 +0800 Subject: [PATCH] CI: clone the main branch in the dev-track job The job still checked out `dev`, which no longer exists. --- .forgejo/workflows/dev-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/dev-release.yml b/.forgejo/workflows/dev-release.yml index eddcba1..3d36231 100644 --- a/.forgejo/workflows/dev-release.yml +++ b/.forgejo/workflows/dev-release.yml @@ -16,7 +16,7 @@ jobs: run: | set -euo pipefail rm -rf src && mkdir src - git clone --branch dev --depth 1 \ + git clone --branch main --depth 1 \ "https://git.breadway.dev/${GITHUB_REPOSITORY}.git" src - name: build