@@ -162,7 +162,59 @@ jobs:
162162 allowUpdates : true
163163 replacesArtifacts : true
164164
165- # windows arm slim AIO -----------------------------------------------------
165+ # windows arm AIO ------------------------------------------------------
166+ winarmaio :
167+ # if: false
168+ name : WinarmAIO
169+ runs-on : windows-2022
170+ needs : install
171+ steps :
172+ - name : Checkout Git repository
173+ uses : actions/checkout@v4
174+
175+ - name : Get revision
176+ uses : dsaltares/fetch-gh-release-asset@master
177+ with :
178+ file : ' revision.txt'
179+ target : ' revision.txt'
180+ token : ${{ secrets.GITHUB_TOKEN }}
181+
182+ - name : Get winzip
183+ uses : dsaltares/fetch-gh-release-asset@master
184+ with :
185+ file : ' winarm64.zip'
186+ target : ' winarm64.zip'
187+ token : ${{ secrets.GITHUB_TOKEN }}
188+
189+ - name : List
190+ shell : pwsh
191+ run : dir
192+
193+ - name : Get version
194+ shell : pwsh
195+ run : script\getversion.ps1
196+
197+ - name : Get files
198+ shell : pwsh
199+ run : script\getfiles.ps1 0 1
200+
201+ - name : Build AIO
202+ uses : joncloud/makensis-action@v4.1
203+
204+ - name : Rename build
205+ shell : pwsh
206+ run : script\rename.ps1 0
207+
208+ - name : Release WinarmAIO
209+ uses : ncipollo/release-action@v1
210+ with :
211+ tag : build
212+ artifacts : winarm64.exe
213+ token : ${{ secrets.GITHUB_TOKEN }}
214+ allowUpdates : true
215+ replacesArtifacts : true
216+
217+ # windows arm slim AIO -------------------------------------------------
166218 winarmaios :
167219 # if: false
168220 name : WinarmAIOslim
@@ -205,7 +257,7 @@ jobs:
205257 shell : pwsh
206258 run : script\rename.ps1 0
207259
208- - name : Release WinarmAIO
260+ - name : Release WinarmAIOs
209261 uses : ncipollo/release-action@v1
210262 with :
211263 tag : build
@@ -219,7 +271,7 @@ jobs:
219271 # if: false
220272 name : Run Webhook
221273 runs-on : ubuntu-latest
222- needs : [unixaio, winaio, winaios, winarmaios]
274+ needs : [unixaio, winaio, winaios, winarmaio, winarmaios]
223275 steps :
224276 - name : distribution
225277 uses : distributhor/workflow-webhook@v2
0 commit comments