mirror of
https://github.com/CyberL1/holesail-proxy.git
synced 2025-02-23 10:39:20 -05:00
27 lines
408 B
YAML
27 lines
408 B
YAML
|
name: Build Go
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ "main" ]
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- name: Set up Go
|
||
|
uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: '1.23'
|
||
|
|
||
|
- name: Build
|
||
|
run: go build
|
||
|
|
||
|
- name: Upload build
|
||
|
uses: actions/upload-artifact@v4
|
||
|
with:
|
||
|
name: holesail-proxy
|
||
|
path: holesail-proxy
|