Skip to content

Commit 55c647a

Browse files
committed
Fix archive extension comparison
1 parent b5c5722 commit 55c647a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ runs:
4545
- name: Extract Codee artifact
4646
shell: bash
4747
run: |
48-
if [[ "${{ steps.mapping.outputs.codee_archive_extension }}" ]]; then
48+
if [[ "${{ steps.mapping.outputs.codee_archive_extension }}" == "zip" ]]; then
4949
unzip /tmp/codee.zip -d /tmp/codee-tmp
5050
mv /tmp/codee-tmp/* /tmp/codee/
5151
rm -f /tmp/codee-tmp

0 commit comments

Comments
 (0)