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 }}