From ce9a0cc350f81821b25cfd36e1e6d0a91d5eb5a3 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Sun, 26 Feb 2023 11:19:09 -0800 Subject: [PATCH] Delete release-binaries.yaml --- .github/workflows/release-binaries.yaml | 26 ------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/release-binaries.yaml diff --git a/.github/workflows/release-binaries.yaml b/.github/workflows/release-binaries.yaml deleted file mode 100644 index e276089..0000000 --- a/.github/workflows/release-binaries.yaml +++ /dev/null @@ -1,26 +0,0 @@ -on: - release: - types: [created] - -jobs: - releases-matrix: - name: Release Go Binary - runs-on: ubuntu-latest - strategy: - matrix: - goos: [linux, darwin] - goarch: ["386", amd64, arm64] - exclude: - - goarch: "386" - goos: darwin - steps: - - uses: actions/checkout@v3 - - uses: wangyoucao577/go-release-action@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - goos: ${{ matrix.goos }} - goarch: ${{ matrix.goarch }} - goversion: "1.18" - project_path: "./server" - binary_name: "jarvis" - asset_name: jarvis-${{ matrix.goos }}-${{ matrix.goarch }}