From ab1251ef78d0568fc6a4dabbb7f485ebd2de68ea Mon Sep 17 00:00:00 2001 From: TopiSenpai Date: Thu, 19 May 2022 03:24:11 +0200 Subject: [PATCH] remove shit workflow --- .github/workflows/release.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 8f9ac3d..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Release -on: - release: - types: [created] - -jobs: - releases: - name: Release Go Binary - runs-on: ubuntu-latest - strategy: - matrix: - # build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64 - goos: [linux, windows] - goarch: ["386", amd64] - steps: - - uses: actions/checkout@v2 - - uses: wangyoucao577/go-release-action@v1.28 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - goos: ${{ matrix.goos }} - goarch: ${{ matrix.goarch }} - goversion: "https://dl.google.com/go/go1.18.2.linux-amd64.tar.gz" - extra_files: LICENSE README.md