Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Commit cd5ac14

Browse files
committed
test 2
1 parent 8416e05 commit cd5ac14

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ jobs:
6060
- uses: actions/upload-artifact@v4
6161
with:
6262
name: Linux Build
63-
path: export/release/linux/bin/*
63+
path: export/release/linux/bin
6464

6565
buildWindows:
66-
name: Build on Windows (64 & 32)
66+
name: Build on Windows
6767
runs-on: windows-latest
6868
needs: setup-haxe
6969
strategy:
@@ -82,11 +82,11 @@ jobs:
8282
- run: echo "${{ github.run_id }}" > VERSION
8383
shell: bash
8484
- run: |
85-
haxelib run lime build windows${{ matrix.arch == 32 && ' -32' || '' }} --app-version="4.0.0-${{ github.run_id }}" $ARGS
85+
haxelib run lime build windows${{ matrix.arch == 32 && ' -32' || '-64' }} --app-version="4.0.0-${{ github.run_id }}" $ARGS
8686
- uses: actions/upload-artifact@v4
8787
with:
8888
name: Windows Build (x${{ matrix.arch }})
89-
path: ${{ matrix.arch == 64 && 'export/release/windows/bin/*' || 'export/32bit/windows/bin/*' }}
89+
path: export/${{ matrix.arch == 64 && 'release' || '32bit' }}/windows/bin
9090

9191
buildMac:
9292
name: Build on macOS (Universal)
@@ -110,7 +110,7 @@ jobs:
110110
- uses: actions/upload-artifact@v4
111111
with:
112112
name: macOS Build
113-
path: export/release/mac/bin/*
113+
path: export/release/mac/bin
114114

115115
buildAndroid:
116116
name: Build Android
@@ -141,7 +141,7 @@ jobs:
141141
- uses: actions/upload-artifact@v4
142142
with:
143143
name: Android Build
144-
path: export/release/android/bin/*
144+
path: export/release/android/bin
145145

146146
buildiOS:
147147
name: Build iOS

0 commit comments

Comments
 (0)