From e935d09cfee7417344ec2836d95c807df8d5cb0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=AE=E5=87=89?= <927625802@qq.com> Date: Wed, 3 Nov 2021 19:56:16 +0800 Subject: [PATCH] :construction_worker: build action --- .github/workflows/build.yml | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..44b53e4a --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,64 @@ +name: build + +on: + push: + branches: [ v2 ] + pull_request: + branches: [ v2 ] + +jobs: + build: + strategy: + matrix: + platform: [ubuntu-latest] + go-version: [1.17] + name: Build + runs-on: ${{ matrix.platform }} + steps: + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + + - name: Checkout + uses: actions/checkout@v2 + with: + ref: v2 + path: alist + + - name: Checkout tools repo + uses: actions/checkout@v2 + with: + repository: Xhofe/alist-web + ref: v2 + path: alist-web + + - name: Set up Node + uses: actions/setup-node@v2 + with: + node-version: '16' + + - name: Set up xgo + run: | + docker pull techknowlogick/xgo:latest + go install src.techknowlogick.com/xgo@latest + apt install upx + + - name: Build web + run: | + cd alist-web + yarn + yarn build + cd .. + + - name: Build + run: | + cd alist + sh build.sh + cd .. + + - name: Upload artifact + - uses: actions/upload-artifact@v2 + with: + name: artifact + path: alist/build