From babc8d0e1b5a47fc95dc3c54737530701726c3f4 Mon Sep 17 00:00:00 2001 From: Stephanie DiBenedetto Date: Tue, 19 Aug 2025 13:45:34 -0700 Subject: [PATCH] Remove (unused) release step of build.yml --- .github/workflows/build.yml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b06e72..045bfca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build, Test and Release +name: Build and Test on: push @@ -108,25 +108,3 @@ jobs: with: name: release-${{ matrix.os }}-${{ matrix.cpu }} path: out - - release: - needs: package - if: startsWith(github.ref, 'refs/tags/') - - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - uses: actions/download-artifact@v4 - with: - name: release-${{ matrix.os }}-${{ matrix.cpu }} - - - name: Release - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: protobuf-javascript-* - file_glob: true - tag: ${{ github.ref }} - overwrite: true