@@ -128,15 +128,6 @@ jobs:
128
128
with :
129
129
board : ${{ matrix.board }}
130
130
131
- package-raspbian :
132
- uses : ./.github/workflows/package_raspbian.yml
133
-
134
- package-raspbian-armv7l :
135
- uses : ./.github/workflows/package_raspbian_armv7l.yml
136
-
137
- package-native :
138
- uses : ./.github/workflows/package_amd64.yml
139
-
140
131
build-debian-src :
141
132
uses : ./.github/workflows/build_debian_src.yml
142
133
with :
@@ -158,7 +149,7 @@ jobs:
158
149
docker-alpine-amd64 :
159
150
uses : ./.github/workflows/docker_build.yml
160
151
with :
161
- distro : debian
152
+ distro : alpine
162
153
platform : linux/amd64
163
154
runs-on : ubuntu-24.04
164
155
push : false
@@ -288,14 +279,7 @@ jobs:
288
279
if : ${{ github.event_name == 'workflow_dispatch' }}
289
280
outputs :
290
281
upload_url : ${{ steps.create_release.outputs.upload_url }}
291
- needs :
292
- [
293
- gather-artifacts,
294
- package-raspbian,
295
- package-raspbian-armv7l,
296
- package-native,
297
- build-debian-src,
298
- ]
282
+ needs : [gather-artifacts, build-debian-src]
299
283
steps :
300
284
- name : Checkout
301
285
uses : actions/checkout@v4
@@ -324,13 +308,6 @@ jobs:
324
308
body : |
325
309
Autogenerated by github action, developer should edit as required before publishing...
326
310
327
- - name : Download deb files
328
- uses : actions/download-artifact@v4
329
- with :
330
- pattern : meshtasticd_${{ steps.version.outputs.long }}_*.deb
331
- merge-multiple : true
332
- path : ./output
333
-
334
311
- name : Download source deb
335
312
uses : actions/download-artifact@v4
336
313
with :
@@ -346,11 +323,8 @@ jobs:
346
323
- name : Display structure of downloaded files
347
324
run : ls -lR
348
325
349
- - name : Add deb files to release
326
+ - name : Add source deb to release
350
327
run : |
351
- gh release upload v${{ steps.version.outputs.long }} ./output/meshtasticd_${{ steps.version.outputs.long }}_arm64.deb
352
- gh release upload v${{ steps.version.outputs.long }} ./output/meshtasticd_${{ steps.version.outputs.long }}_armhf.deb
353
- gh release upload v${{ steps.version.outputs.long }} ./output/meshtasticd_${{ steps.version.outputs.long }}_amd64.deb
354
328
gh release upload v${{ steps.version.outputs.long }} ./output/meshtasticd-${{ steps.version.outputs.deb }}-src.zip
355
329
env :
356
330
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments