Skip to content

Commit c7312db

Browse files
committed
Update Qt version and artifact names in workflow (based on changes to builder workflow)
1 parent 9772d29 commit c7312db

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/create-installer.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
1919
strategy:
2020
matrix:
21-
qt-version: ["6.7.1"]
21+
# Match the Qt version in the 'Build' workflow
22+
qt-version: ["6.7.3"]
2223
steps:
2324
- uses: actions/checkout@v6
2425
with:
@@ -28,12 +29,14 @@ jobs:
2829
uses: dawidd6/action-download-artifact@v11
2930
with:
3031
workflow: build.yml
31-
name: chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip
32-
commit: ${{ github.sha }}
32+
name: chatterino-windows-old-x86-64-Qt-${{ matrix.qt-version }}.zip
33+
# Use the commit SHA from the triggering 'Build' workflow run
34+
# For manual runs ('workflow_dispatch'), it falls back to the current commit
35+
commit: ${{ github.event.workflow_run.head_sha || github.sha }}
3336
path: build/
3437

3538
- name: Unzip
36-
run: 7z e -spf chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip
39+
run: 7z e -spf chatterino-windows-old-x86-64-Qt-${{ matrix.qt-version }}.zip
3740
working-directory: build
3841

3942
- name: Install InnoSetup

0 commit comments

Comments
 (0)