Skip to content

Commit dddfdfa

Browse files
committed
fix
1 parent 0414ed6 commit dddfdfa

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
run: |
4242
$files = @(
4343
"relbuild/x86/steam_api.dll",
44-
"relbuild/x64/steam_api64.dll"
45-
"debbuild/x86/steam_api.dll"
44+
"relbuild/x64/steam_api64.dll",
45+
"debbuild/x86/steam_api.dll",
4646
"debbuild/x64/steam_api64.dll"
4747
)
4848
@@ -88,15 +88,18 @@ jobs:
8888
8989
Compress-Archive -Path $packageRootdeb -DestinationPath $archivePathdeb
9090
91-
- name: Upload workflow artifact
91+
- name: Upload release artifact
9292
uses: actions/upload-artifact@v4
9393
with:
94-
name: |
95-
uc-online2-${{ github.ref_name }}-release
96-
uc-online2-${{ github.ref_name }}-debug
97-
path: |
98-
dist/uc-online2-${{ github.ref_name }}-release.zip
99-
dist/uc-online2-${{ github.ref_name }}-debug.zip
94+
name: uc-online2-${{ github.ref_name }}-release
95+
path: dist/uc-online2-${{ github.ref_name }}-release.zip
96+
if-no-files-found: error
97+
98+
- name: Upload debug artifact
99+
uses: actions/upload-artifact@v4
100+
with:
101+
name: uc-online2-${{ github.ref_name }}-debug
102+
path: dist/uc-online2-${{ github.ref_name }}-debug.zip
100103
if-no-files-found: error
101104

102105
- name: Publish release assets

0 commit comments

Comments
 (0)