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