We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0313a7b commit b94fd08Copy full SHA for b94fd08
1 file changed
.github/workflows/build.yml
@@ -54,9 +54,7 @@ jobs:
54
- uses: actions/upload-artifact@v4
55
with:
56
name: modloader-${{ github.sha }}
57
- path: |
58
- release/binaries
59
- release/symbols
+ path: release
60
include-hidden-files: true
61
if-no-files-found: error
62
retention-days: 30
@@ -78,9 +76,8 @@ jobs:
78
76
79
77
- name: Package zip files
80
run: |
81
- cd dist/release
82
- (cd binaries && zip -r ../../modloader.zip .)
83
- (cd symbols && zip -r ../../pdb-symbols.zip .)
+ (cd dist/binaries && zip -r ../modloader.zip .)
+ (cd dist/symbols && zip -r ../pdb-symbols.zip .)
84
85
- name: Prepare release notes
86
env:
0 commit comments