From aadb5f373cdc9022e55b3ea3c94e4edb730f504b Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Thu, 20 May 2021 18:10:50 -0400 Subject: [PATCH] chore(ci): removed github action - say goodbye to ci --- .github/workflows/build.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 43f63d4..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,37 +0,0 @@ -on: - push: - branches: - - master - - dev - pull_request: - branches: - - dev - -jobs: - build: - name: Build - runs-on: ubuntu-latest - strategy: - matrix: - # build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/amd64 - goos: - - linux -# - windows -# - darwin - goarch: - - "386" - - amd64 - exclude: - - goarch: "386" - goos: darwin - steps: - - name: Install readline - run: sudo apt install libreadline-dev - - uses: actions/checkout@v2 - - uses: wangyoucao577/go-release-action@v1.17 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - goos: ${{ matrix.goos }} - goarch: ${{ matrix.goarch }} - extra_files: LICENSE README.md - asset_name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}