From 72fae1af251ecac49ce8c77d324a05e75d81a3b0 Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Wed, 28 May 2025 16:19:41 +0800 Subject: [PATCH] fix: update artifact patterns in release workflow - Modified the artifact patterns in the GitHub Actions release workflow to include 'dist/rc*.yml' for better versioning support. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d7fa9142f0..c3ab3d803d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -113,5 +113,5 @@ jobs: allowUpdates: true makeLatest: false tag: ${{ steps.get-tag.outputs.tag }} - artifacts: 'dist/*.exe,dist/*.zip,dist/*.dmg,dist/*.AppImage,dist/*.snap,dist/*.deb,dist/*.rpm,dist/*.tar.gz,dist/latest*.yml,dist/*.blockmap' + artifacts: 'dist/*.exe,dist/*.zip,dist/*.dmg,dist/*.AppImage,dist/*.snap,dist/*.deb,dist/*.rpm,dist/*.tar.gz,dist/latest*.yml,dist/rc*.yml,dist/*.blockmap' token: ${{ secrets.GITHUB_TOKEN }}