From 796e4a40b643b48f5b50e49e675650f489a4f25b Mon Sep 17 00:00:00 2001 From: bol-van Date: Wed, 11 Jun 2025 20:48:13 +0300 Subject: [PATCH] rename bin dirs --- .github/workflows/build.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acf11739..9bb6e6be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -427,7 +427,6 @@ jobs: unzip $f -d $dir && rm $f if [[ $dir =~ win ]]; then chmod -x $dir/* - run_upx --force $dir/cygwin1.dll fi ;; esac @@ -443,15 +442,15 @@ jobs: *-android-x86 ) run_dir android-x86 ;; *-android-x86_64 ) run_dir android-x86_64 ;; *-freebsd-x86_64 ) run_dir freebsd-x64 ;; - *-linux-arm ) run_dir arm ;; - *-linux-arm64 ) run_dir aarch64 ;; - *-linux-mips64 ) run_dir mips64r2-msb ;; - *-linux-mipselsf ) run_dir mips32r1-lsb ;; - *-linux-mipssf ) run_dir mips32r1-msb ;; - *-linux-ppc ) run_dir ppc ;; - *-linux-x86 ) run_dir x86 ;; - *-linux-x86_64 ) run_dir x86_64 ;; - *-linux-lexra ) run_dir lexra ;; + *-linux-arm ) run_dir linux-arm ;; + *-linux-arm64 ) run_dir linux-arm64 ;; + *-linux-mips64 ) run_dir linux-mips64 ;; + *-linux-mipselsf ) run_dir linux-mipsel ;; + *-linux-mipssf ) run_dir linux-mips ;; + *-linux-ppc ) run_dir linux-ppc ;; + *-linux-x86 ) run_dir linux-x86 ;; + *-linux-x86_64 ) run_dir linux-x86_64 ;; + *-linux-lexra ) run_dir linux-lexra ;; *-mac-x64 ) run_dir mac64 ;; *-win-x86 ) run_dir win32 ;; *-win-x86_64 ) run_dir win64 ;;