4141
4242 steps :
4343 - name : Checkout repository
44- uses : actions/checkout@v4
44+ uses : actions/checkout@v6
4545 with :
4646 ref : ${{ github.event.inputs.tag || github.event.inputs.branch || github.ref_name }}
4747
5151 shell : cmd
5252
5353 - name : Convert version for dev branch
54- if : ${{ github.ref_name == 'dev' || github.event.inputs.branch == 'dev' }}
54+ if : ${{ github.ref_name == 'dev' || github.event.inputs.branch == 'dev' || startsWith(github.ref_name, 'release/') || startsWith(github.event.inputs.branch, 'release/') }}
5555 run : |
5656 for /f "tokens=1,2 delims=." %%a in ("%APP_VERSION%") do (
5757 echo APP_VERSION=%%a.%%b-dev>>%GITHUB_ENV%
9090 shell : cmd
9191
9292 - name : Install Python (for aqtinstall)
93- uses : actions/setup-python@v5
93+ uses : actions/setup-python@v6
9494 with :
9595 python-version : " 3.11"
9696
@@ -136,7 +136,7 @@ jobs:
136136
137137 - name : Upload Executable
138138 id : upload-exe
139- uses : actions/upload-artifact@v4
139+ uses : actions/upload-artifact@v7
140140 if : success()
141141 with :
142142 name : omodsim-${{ env.APP_VERSION }}_${{ env.CMAKE_ARCH }}.exe
@@ -157,7 +157,7 @@ jobs:
157157 wait-for-completion-timeout-in-seconds : 3600
158158
159159 - name : Upload signed Executable
160- uses : actions/upload-artifact@v4
160+ uses : actions/upload-artifact@v7
161161 if : success() && env.SIGNING_POLICY_SLUG != 'none'
162162 with :
163163 name : omodsim-${{ env.APP_VERSION }}_${{ env.CMAKE_ARCH }}-signed.exe
@@ -196,7 +196,7 @@ jobs:
196196
197197 - name : Upload Installer
198198 id : upload-installer
199- uses : actions/upload-artifact@v4
199+ uses : actions/upload-artifact@v7
200200 if : success()
201201 with :
202202 name : qt5-omodsim-${{ env.APP_VERSION }}_${{ env.CMAKE_ARCH }}
@@ -217,7 +217,7 @@ jobs:
217217 wait-for-completion-timeout-in-seconds : 3600
218218
219219 - name : Upload signed Installer
220- uses : actions/upload-artifact@v4
220+ uses : actions/upload-artifact@v7
221221 if : success() && env.SIGNING_POLICY_SLUG != 'none'
222222 with :
223223 name : qt5-omodsim-${{ env.APP_VERSION }}_${{ env.CMAKE_ARCH }}-signed
0 commit comments