Skip to content

Commit c74d134

Browse files
authored
Merge pull request #1342 from input-output-hk/damien/1235/fix-action-contains-expression
Fix github action contains expression
2 parents e7bb6cb + f874e37 commit c74d134

File tree

1 file changed

+1
-1
lines changed
  • .github/workflows/actions/prepare-distribution

1 file changed

+1
-1
lines changed

.github/workflows/actions/prepare-distribution/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ runs:
8686
EOF
8787
8888
- name: Fetch the latest version of the unstable tag
89-
if: contains('unstable', inputs.version-name)
89+
if: contains(inputs.version-name, 'unstable')
9090
shell: bash
9191
run: |
9292
cat >> ./release-notes-addon.txt << EOF

0 commit comments

Comments
 (0)