From 2fc82c3790795c6d31f083d681e67d46337a2c47 Mon Sep 17 00:00:00 2001 From: default Date: Fri, 9 Aug 2024 07:09:42 +0800 Subject: [PATCH] v0.5: remove binary build --- .github/workflows/go.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index a0b2bcd1..00000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: Go - -on: - push: - tags: - - "*" - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: "1.22.1" - - - name: Build - run: make build - - - name: Release - uses: softprops/action-gh-release@v2 - with: - files: bin/go-proxy - #- name: Test - # run: go test -v ./...