Skip to content

Commit f829a23

Browse files
committed
Adjust createRelease to match naming conventions
Signed-off-by: Viktor Kopp <vifactor@gmail.com>
1 parent b448cb7 commit f829a23

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

.github/workflows/BuildPR.yml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
createRelease:
218218
name: Create release
219219
runs-on: ubuntu-24.04
220-
needs: [ buildMac, buildUbuntu, buildWindows ]
220+
needs: [ buildMac, buildMacOSQt6, buildUbuntu, buildWindows ]
221221
if: startsWith(github.ref, 'refs/tags/')
222222
steps:
223223
- name: Checkout
@@ -226,28 +226,27 @@ jobs:
226226
fetch-depth: 0
227227
submodules: true
228228

229-
- name: Download DLT Linux artifacts
230-
uses: actions/download-artifact@v4
231-
with:
232-
name: DLT-Linux
233-
continue-on-error: true
229+
# TODO: restore AppImage build then enable this step, see https://github.com/COVESA/dlt-viewer/issues/717
230+
# - name: Download DLT Linux artifacts
231+
# uses: actions/download-artifact@v4
232+
# with:
233+
# name: DLT-Linux
234+
# continue-on-error: true
234235

235236
- name: Download DLT macOS artifacts arm64
236237
uses: actions/download-artifact@v4
237238
with:
238-
name: DLT-Mac-arm64
239+
name: DLTViewer-macos15-qt6
240+
239241
- name: Download DLT macOS artifacts x86
240242
uses: actions/download-artifact@v4
241243
with:
242-
name: DLT-Mac-x86
243-
- name: Download DLT Windows parser artifacts
244-
uses: actions/download-artifact@v4
245-
with:
246-
name: DLT-Windows-parser
247-
- name: Download DLT Windows sdk artifacts
244+
name: DLTViewer-macos-13-x86
245+
246+
- name: Download DLT Windows artifacts
248247
uses: actions/download-artifact@v4
249248
with:
250-
name: DLT-Windows-sdk
249+
name: DLTViewer-windows-x86_64
251250

252251
- name: Find Tag
253252
id: tagger
@@ -275,6 +274,6 @@ jobs:
275274
prerelease: ${{ env.PRE_RELEASE }}
276275
name: ${{steps.tagger.outputs.tag}}
277276
files: |
278-
DLT-*
277+
DLTViewer-*
279278
env:
280279
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)