2021-10-07 16:50:47 +08:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2022-01-14 19:59:53 +08:00
|
|
|
go-version: "1.17"
|
2021-10-07 16:50:47 +08:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
go version
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y make
|
|
|
|
|
2021-11-01 03:54:38 +08:00
|
|
|
- name: Run build
|
2021-10-07 16:50:47 +08:00
|
|
|
run: make build
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: headscale-linux
|
2021-10-22 03:18:50 +08:00
|
|
|
path: headscale
|