File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1818 matrix :
1919 include :
2020 - { image: ubuntu-24.04, cpu_arch: x86_64 }
21- - { image: ubuntu-24.04-arm64 , cpu_arch: aarch64 }
21+ - { image: ubuntu-24.04-arm , cpu_arch: aarch64 }
2222
2323 runs-on : ${{ matrix.image }}
2424 steps :
4848 - name : Upload build
4949 uses : actions/upload-artifact@v4
5050 with :
51- name : appimage
51+ name : appimage-${{ matrix.cpu_arch }}
5252 path : |
5353 staging/*.*
5454
Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ export SOURCE_FOLDER="$PWD"
44
55if [[ " ${CPU_ARCH} " == " aarch64" ]]; then
66 export CPU_ARCH_SUFFIX=" -aarch64"
7+ export OSSIA_SDK=/opt/ossia-sdk-aarch64
78else
89 export CPU_ARCH_SUFFIX=" "
10+ export OSSIA_SDK=/opt/ossia-sdk
911fi
1012
1113
6870chmod a+rwx Score.AppImage
6971(
7072 cd $BUILD_FOLDER /SDK
71- zip -r -q -9 $SOURCE_FOLDER /linux-sdk$CPU_ARCH_SUFFIX .zip usr
73+ zip -r -q -9 $SOURCE_FOLDER /linux-sdk.zip usr
7274)
Original file line number Diff line number Diff line change 22export TAG=" $GITTAGNOV "
33
44mv " Score.AppImage" " $BUILD_ARTIFACTSTAGINGDIRECTORY /ossia score-$TAG -linux-$CPU_ARCH .AppImage"
5- mv " linux-sdk.zip" " $BUILD_ARTIFACTSTAGINGDIRECTORY /"
5+ mv " linux-sdk.zip" " $BUILD_ARTIFACTSTAGINGDIRECTORY /linux-sdk- $CPU_ARCH .zip "
You can’t perform that action at this time.
0 commit comments