Skip to content

Commit d7c5d4c

Browse files
committed
Simplify file patterns in release.yml
Updated the `files` parameter in the `Upload installers to GitHub Release` job to use a generic pattern (`Output/Publish/**`) instead of specific patterns (`Output/Publish/Math.Editor*` and `Output/Publish/releases.*.json`). This change ensures all files and directories under `Output/Publish/` are included, improving maintainability and flexibility.
1 parent bfd617d commit d7c5d4c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,4 @@ jobs:
118118
with:
119119
tag_name: ${{ github.ref_name }}
120120
files: |
121-
Output/Publish/Math.Editor*
122-
Output/Publish/releases.*.json
121+
Output/Publish/**

0 commit comments

Comments
 (0)