Skip to content

Commit b694110

Browse files
committed
Linux Snap Fixes
1 parent a65d898 commit b694110

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/build-gradle.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,11 @@ jobs:
6262
./app/build/compose/binaries/main/dmg/INSTRUCTIONS_FOR_TESTING.txt
6363
./app/build/compose/binaries/main/msi/Processing-*.msi
6464
./app/build/compose/binaries/main/deb/processing*.deb
65+
retention-days: 1
66+
- name: Upload Snap
67+
uses: actions/upload-artifact@v4
68+
with:
69+
name: processing-${{ github.ref_name }}-${{github.sha}}-${{ matrix.os_prefix }}-${{ matrix.arch }}-snap
70+
path: |
6571
./app/build/compose/binaries/main/processing*.snap
6672
retention-days: 1

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ tasks.register("generateSnapConfiguration"){
164164

165165
val arch = when (System.getProperty("os.arch")) {
166166
"amd64", "x86_64" -> "amd64"
167+
"aarch64" -> "arm64"
167168
else -> System.getProperty("os.arch")
168169
}
169170

0 commit comments

Comments
 (0)