Skip to content

Commit

Permalink
only automatically build a release if a 'v*' tag is pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
majcosta committed Jan 7, 2025
1 parent 0e79d23 commit a6583e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
set -eux
full_release='${{ ( github.repository == '1dot13/source' && github.ref_name == 'master' ) || startsWith(github.ref, 'refs/tags/v') }}'
full_release='${{ github.repository == '1dot13/source' && github.ref_name == 'master' && startsWith(github.ref, 'refs/tags/v') }}'
if [[ '${{ inputs.build_all_languages }}' == 'true' || "$full_release" == 'true' ]]
then
Expand Down

0 comments on commit a6583e4

Please sign in to comment.