Skip to content

Commit

Permalink
fix: only build release artifacts on releases (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
shellcromancer authored Dec 19, 2024
1 parent d449206 commit e4026ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
go-version: 1.22

- name: Upload Release Artifact
if: ${{ steps.release.outputs.releases_created }}
if: github.event_name == 'release' && github.event.prerelease == false
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
with:
version: latest
Expand Down

0 comments on commit e4026ae

Please sign in to comment.