Skip to content

Commit

Permalink
Merge pull request #14 from cytopia/disable-refs
Browse files Browse the repository at this point in the history
Also allow booleans in disable_refs
  • Loading branch information
cytopia committed Nov 14, 2022
2 parents 4b7c0c4 + 92ad647 commit d451c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
ref: ${{ inputs.repository_default_branch }}
fetch-depth: 0
path: .git-ref-matrix-action
if: ${{ (inputs.disable_refs == 0 || inputs.disable_refs == '0' || inputs.disable_refs == 'false') && inputs.num_latest_tags > 0 }}
if: ${{ (!inputs.disable_refs || inputs.disable_refs == 0 || inputs.disable_refs == '0' || inputs.disable_refs == 'false') && inputs.num_latest_tags > 0 }}

- name: "[SETUP] Build and Export Matrix"
id: set-matrix
Expand Down

0 comments on commit d451c06

Please sign in to comment.