File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -439,6 +439,12 @@ jobs:
439
439
image_url : https://github.com/PhotonVision/photon-image-modifier/releases/download/v2025.0.0-beta-3/photonvision_opi5pro.img.xz
440
440
cpu : cortex-a8
441
441
image_additional_mb : 1024
442
+ - os : ubuntu-latest
443
+ artifact-name : LinuxArm64
444
+ image_suffix : orangepi5max
445
+ image_url : https://github.com/PhotonVision/photon-image-modifier/releases/download/v2025.0.0-beta-6/photonvision_opi5max.img.xz
446
+ cpu : cortex-a8
447
+ image_additional_mb : 1024
442
448
443
449
runs-on : ${{ matrix.os }}
444
450
name : " Build image - ${{ matrix.image_url }}"
@@ -509,10 +515,19 @@ jobs:
509
515
**/photonlib*.zip
510
516
if : github.event_name == 'push'
511
517
# Upload all jars and xz archives
512
- - uses : softprops/action-gh-release@v1
518
+ # Split into two uploads to work around max size limits in action-gh-releases
519
+ # https://github.com/softprops/action-gh-release/issues/353
520
+ -
uses :
softprops/[email protected]
513
521
with :
514
522
files : |
515
- **/*.xz
523
+ **/*orangepi5*.xz
524
+ if : startsWith(github.ref, 'refs/tags/v')
525
+ env :
526
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
527
+ -
uses :
softprops/[email protected]
528
+ with :
529
+ files : |
530
+ **/!(*orangepi5*).xz
516
531
**/*.jar
517
532
**/photonlib*.json
518
533
**/photonlib*.zip
You can’t perform that action at this time.
0 commit comments