Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/FastGitORG/SNIProxyGo
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinZonda committed Mar 17, 2021
2 parents eca8187 + 048dff5 commit d1ca8b8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Go

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:

build:
runs-on: ubuntu-latest
env:
GOARCH: amd64
GOOS: linux
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15

- name: Build
run: |
mkdir release
go get gopkg.in/yaml.v2
go build -ldflags "-s -w" -o ./release/sniproxy-linux-amd64 ./
- uses: actions/upload-artifact@v2
name: Upload Artifacts
with:
name: sniproxy-linux-amd64
path: release/sniproxy-linux-amd64

0 comments on commit d1ca8b8

Please sign in to comment.