From 61ab27398c8558a3ab9971b108968c7a617acdb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=AE=E5=87=89?= Date: Sun, 21 Mar 2021 10:14:59 +0800 Subject: [PATCH] =?UTF-8?q?:construction=5Fworker:=20=E6=B7=BB=E5=8A=A0lin?= =?UTF-8?q?ux386=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb0418e8..2c437d25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,6 +41,7 @@ jobs: CC=gcc CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o alist_linux_amd64 alist.go CC=aarch64-linux-gnu-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -o alist_linux_arm64 alist.go CC=arm-linux-gnueabihf-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm go build -o alist_linux_arm alist.go + CC=gcc CGO_ENABLED=1 GOOS=linux GOARCH=386 go build -o alist_linux_386 alist.go - name: Build windows run: | @@ -68,4 +69,9 @@ jobs: uses: actions/upload-artifact@v2 with: name: alist_windows_amd64 - path: alist_windows_amd64.exe \ No newline at end of file + path: alist_windows_amd64.exe + - name: Upload artifacts linux_386 + uses: actions/upload-artifact@v2 + with: + name: alist_linux_386 + path: alist_linux_386