File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments