From 67b78f7e72fedd7b1d31d0aab9de45c20d6c0626 Mon Sep 17 00:00:00 2001 From: Bengt Wegner Date: Thu, 19 Sep 2024 10:15:36 +0200 Subject: [PATCH] Chore: Remove unverified gh action Signed-off-by: Bengt Wegner --- .github/workflows/release_binaries.yml | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release_binaries.yml b/.github/workflows/release_binaries.yml index 6df8098..7f4cfcb 100644 --- a/.github/workflows/release_binaries.yml +++ b/.github/workflows/release_binaries.yml @@ -3,9 +3,6 @@ name: Build Release Binaries on: push: branches: [ "chore/release_binaries" ] - release: - types: - - created jobs: build: @@ -25,13 +22,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.23' - - - name: Install dependencies - run: go get . - - - name: Display the release tag - run: echo ${{ github.event.release.tag_name }} - + - name: Cache Go modules uses: actions/cache@v3 with: @@ -51,12 +42,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: binaries - path: dist/ - - - name: Upload the binaries - uses: svenstaro/upload-release-action@2.9.0 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - tag: ${{ github.ref }} - file: dist/* - file_glob: true \ No newline at end of file + path: dist/ \ No newline at end of file