From 84971f77d01533e36c1ca9688a88eb55c9434040 Mon Sep 17 00:00:00 2001 From: Hiroaki Yutani Date: Sat, 25 Feb 2023 21:18:44 +0900 Subject: [PATCH] Add linux-aarch64 to the targets of auto-update on the CI (#137) --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bce8758c..461b8fee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -441,7 +441,7 @@ jobs: # Replace the default bindings cd bindings - for x in linux-x86_64 macos-aarch64 macos-x86_64 windows-x86 windows-x86_64; do + for x in linux-aarch64 linux-x86_64 macos-aarch64 macos-x86_64 windows-x86 windows-x86_64; do # Choose the newest version except for devel ln --force -s "$(ls -1 ./bindings-${x}-*.rs | grep -v devel | sort | tail -1)" ./bindings-${x}.rs done