Skip to content

Commit abd959a

Browse files
committed
Will this work?
1 parent 137d425 commit abd959a

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

.github/workflows/damselfly-actions.yml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,10 @@ jobs:
9797
runs-on: ${{ matrix.os }}
9898
strategy:
9999
matrix:
100-
target: [linux, mac, windows]
100+
target: [linux]
101101
include:
102-
- target: windows
103-
os: ubuntu-latest
104102
- target: linux
105103
os: ubuntu-latest
106-
- target: mac
107-
os: macos-latest
108104
steps:
109105
- name: Clone Repository (latest)
110106
uses: actions/checkout@v3
@@ -132,22 +128,36 @@ jobs:
132128
cd publish
133129
unzip $GITHUB_WORKSPACE/server/damselfly-server-${{ matrix.target }}-*.zip
134130
cd ..
131+
135132
- name: Validate Server artifacts
136133
run: |
137134
echo "Server artifacts:"
138135
ls server
139-
- name: Download Desktop Builds into wwwroot folder
136+
137+
- name: Download Mac Desktop Builds into wwwroot folder
138+
uses: actions/download-artifact@v4
139+
with:
140+
name: Desktop-Dist-universal
141+
path: publish/wwwroot/desktop
142+
143+
- name: Download Windows Desktop Builds into wwwroot folder
140144
uses: actions/download-artifact@v4
141145
with:
142-
name: Desktop-Dist-${{ matrix.target }}
146+
name: Desktop-Dist-windows
143147
path: publish/wwwroot/desktop
144148

149+
- name: Download Windows Desktop Builds into wwwroot folder
150+
uses: actions/download-artifact@v4
151+
with:
152+
name: Desktop-Dist-linux
153+
path: publish/wwwroot/desktop
154+
145155
- name: Validate Desktop artifacts
146156
run: |
147157
echo "Desktop artifacts:"
148158
ls publish/wwwroot/desktop
149159
- name: Set up QEMU
150-
uses: docker/setup-qemu-action@v1
160+
uses: docker/setup-qemu-action@v3
151161

152162
- name: Set up Docker Buildx
153163
uses: docker/setup-buildx-action@v1

0 commit comments

Comments
 (0)