mihomo/.github/workflows/build.yaml
gVisor bot 426df96412 github action add build
(cherry picked from commit bdec838673767977c14191861ac1b9a8291e2ffc)
2022-01-25 20:33:30 +08:00

20 lines
No EOL
419 B
YAML

name: Build All
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.17
- name: Check out code
uses: actions/checkout@v1
- name: Build
run: make
- name: Release
uses: softprops/action-gh-release@v1
with:
files: bin/*
draft: true