From 955c40b1057ad6d59288920f2dd64fb1b7213615 Mon Sep 17 00:00:00 2001 From: CppCXY <812125110@qq.com> Date: Thu, 11 Apr 2024 17:46:11 +0800 Subject: [PATCH] add linux-aarch64 release --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e1ecff..251a3b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -109,6 +109,11 @@ jobs: chmod 777 linux-x64/bin/CodeFormat chmod 777 linux-x64/bin/CodeFormatServer tar -czvf linux-x64.tar.gz linux-x64 + - name: tar linux-aarch64 + run: | + chmod 777 linux-aarch64/bin/CodeFormat + chmod 777 linux-aarch64/bin/CodeFormatServer + tar -czvf linux-aarch64.tar.gz linux-aarch64 - name: zip darwin-x64 uses: TheDoctor0/zip-release@v0.2.1 with: @@ -129,7 +134,6 @@ jobs: chmod 777 darwin-x64/bin/CodeFormat chmod 777 darwin-x64/bin/CodeFormatServer tar -czvf darwin-x64.tar.gz darwin-x64 - - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') @@ -140,6 +144,7 @@ jobs: files: | linux-x64.zip linux-x64.tar.gz + linux-aarch64.tar.gz darwin-x64.zip darwin-arm64.zip win32-x64.zip