Skip to content

Commit 5e28ed0

Browse files
committed
hotfix: gracefully continue if no install task exists in the poe project
1 parent 862e07c commit 5e28ed0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ runs:
132132

133133
- name: Install dependencies
134134
shell: bash
135-
run: poe install
136-
135+
run: |
136+
poe install || echo "Failed 'poe install' or the task does not exist. Continuing..."
137137
- name: Run `poe ${{ steps.resolve-command.outputs.command }}`
138138
shell: bash
139139
run: |

0 commit comments

Comments
 (0)