fix(ci): fix expression in promote action (#4898)
This commit is contained in:
parent
07056df138
commit
555b8cb6ab
|
@ -60,7 +60,7 @@ runs:
|
|||
shell: bash
|
||||
|
||||
- name: Promote DEB package to stable
|
||||
if: ${{ startsWith(inputs.distrib, 'bullseye') || startsWith(inputs.distrib, 'bookworm' }}
|
||||
if: ${{ contains(fromJSON('["bullseye", "bookworm"]'), inputs.distrib) }}
|
||||
run: |
|
||||
echo "[DEBUG] - Distrib: ${{ inputs.distrib }}"
|
||||
|
||||
|
|
Loading…
Reference in New Issue