File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107107 rust_target : ' aarch64-unknown-linux-gnu'
108108 dotnet_runtime : ' linux-arm64'
109109 dotnet_name_postfix : ' -aarch64-unknown-linux-gnu'
110- tauri_bundle : ' appimage deb'
110+ tauri_bundle : ' appimage deb updater '
111111
112112 - platform : ' windows-latest' # for x86-based Windows
113113 rust_target : ' x86_64-pc-windows-msvc'
@@ -506,6 +506,7 @@ jobs:
506506 # - platform=darwin-aarch64 when path contains 'aarch64-apple-darwin'
507507 # - platform=darwin-x86_64 when path contains 'x86_64-apple-darwin'
508508 # - platform=linux-x86_64 when path contains 'x86_64-unknown-linux-'
509+ # - platform=linux-aarch64 when path contains 'aarch64-unknown-linux-'
509510 # - platform=windows-x86_64 when path contains 'x86_64-pc-windows-'
510511 # - platform=windows-aarch64 when path contains 'aarch64-pc-windows-'
511512 #
@@ -515,6 +516,8 @@ jobs:
515516 platform="darwin-x86_64"
516517 elif [[ "$sig_file" == *"amd64.AppImage"* ]]; then
517518 platform="linux-x86_64"
519+ elif [[ "$sig_file" == *"aarch64.AppImage"* ]]; then
520+ platform="linux-aarch64"
518521 elif [[ "$sig_file" == *"x64-setup.nsis"* ]]; then
519522 platform="windows-x86_64"
520523 elif [[ "$sig_file" == *"arm64-setup.nsis"* ]]; then
You can’t perform that action at this time.
0 commit comments