From 01c557e2091b413546656e55835c3585be8989b2 Mon Sep 17 00:00:00 2001 From: registergoofy <70151212+registergoofy@users.noreply.github.com> Date: Wed, 7 Apr 2021 14:23:48 +0200 Subject: [PATCH] get rid of tmp stuff (#738) --- .../workflows/tmp_build_static_release.yml | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/tmp_build_static_release.yml diff --git a/.github/workflows/tmp_build_static_release.yml b/.github/workflows/tmp_build_static_release.yml deleted file mode 100644 index 0bd1c9c47..000000000 --- a/.github/workflows/tmp_build_static_release.yml +++ /dev/null @@ -1,27 +0,0 @@ -# .github/workflows/build-docker-image.yml -name: tmp_one_shot_build - -on: - push: - branches: [ master ] - -jobs: - build_static: - name: Build and upload binary package - runs-on: ubuntu-latest - steps: - - name: Set up Go 1.13 - uses: actions/setup-go@v1 - with: - go-version: 1.13 - id: go - - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - name: Build the binaries - run: make release_static - - name: Upload to release - uses: JasonEtco/upload-to-release@master - with: - args: crowdsec-release-static.tgz application/x-gzip - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}