41 lines
853 B
YAML
41 lines
853 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'main' ]
|
|
pull_request:
|
|
branches: [ 'main' ]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
platform: [ubuntu-latest]
|
|
go-version: [1.19]
|
|
name: Build
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo snap install zig --classic --beta
|
|
docker pull crazymax/xgo:latest
|
|
go install github.com/crazy-max/xgo@latest
|
|
sudo apt install upx
|
|
|
|
- name: Build
|
|
run: |
|
|
bash build.sh dev
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: alist
|
|
path: dist |