Skip to content

Commit

Permalink
Merge branch 'master' into release/dencun
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Aug 24, 2023
2 parents 632e34d + d1a2f18 commit baac50e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ jobs:
run: |
cp .goreleaser.yaml ../.goreleaser.yaml.new
# If we have a valid RELEASE_SUFFIX, update the goreleaser config to not set
# If RELEASE_SUFFIX includes a `-`, update the goreleaser config to not set
# the release as the latest
if [[ -n "$RELEASE_SUFFIX" ]]; then
if [[ "$RELEASE_SUFFIX" == *-* ]]; then
echo "release:" >> ../.goreleaser.yaml.new
echo " prerelease: true" >> ../.goreleaser.yaml.new
echo " make_latest: false" >> ../.goreleaser.yaml.new
Expand Down

0 comments on commit baac50e

Please sign in to comment.