60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
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: Setup Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16'
|
|
|
|
# - name: Setup docker
|
|
# uses: docker-practice/actions-setup-docker@master
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: v2
|
|
path: alist
|
|
|
|
- name: Checkout web repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: Xhofe/alist-web
|
|
ref: v2
|
|
path: alist-web
|
|
|
|
- name: Set up xgo
|
|
run: |
|
|
docker pull techknowlogick/xgo:latest
|
|
go install src.techknowlogick.com/xgo@latest
|
|
sudo apt install upx
|
|
|
|
- name: Build
|
|
run: |
|
|
mv alist/build.sh .
|
|
bash build.sh
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: artifact
|
|
path: alist/build
|