diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yaml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yaml similarity index 64% rename from .github/workflows/release.yml rename to .github/workflows/release.yaml index a2740a9..0ddf5cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yaml @@ -28,15 +28,6 @@ jobs: - name: Test run: go test ./... - - name: Verify tap token - env: - HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }} - run: | - if [ -z "${HOMEBREW_TAP_GITHUB_TOKEN}" ]; then - echo "Missing HOMEBREW_TAP_GITHUB_TOKEN repository secret." - exit 1 - fi - - name: Run GoReleaser uses: goreleaser/goreleaser-action@v7 with: @@ -45,4 +36,3 @@ jobs: args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}