Skip to content

Commit

Permalink
ci: add goreleaser-check as a require step for the goreleaser build (#…
Browse files Browse the repository at this point in the history
…2772)

<!--
Please read and fill out this form before submitting your PR.

Please make sure you have reviewed our contributors guide before
submitting your
first PR.
-->

## Overview
Minor update I saw when debugging the CI. This will ensure that the
goreleaser step won't run if the goreleaser check fails. This will just
clean up the error log a little bit.
  • Loading branch information
MSevey authored Oct 27, 2023
1 parent 25a8243 commit 36ecb01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# If this was a workflow dispatch event, we need to generate and push a tag
# for goreleaser to grab
version_bump:
needs: [lint, test]
needs: [lint, test, goreleaser-check]
runs-on: ubuntu-latest
permissions: "write-all"
steps:
Expand Down

0 comments on commit 36ecb01

Please sign in to comment.