From 1d40eff8fad25dff9c4c6ef0d6f3461d2e914bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=28Buo-ren=20Lin=29?= Date: Sun, 27 Oct 2024 14:41:04 +0800 Subject: [PATCH] fix(github-actions): Fix Git submodules not included in release archive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ๆž—ๅšไป(Buo-ren Lin) --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1aae685..20c73b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,9 @@ jobs: # WORKAROUND: Adding this option triggers actions/checkout#1467 #fetch-tags: true + # Also recursively fetch submodules + submodules: true + - name: >- WORKAROUND: Fetch tags that points to the revisions checked-out(actions/checkout#1467)