Skip to content

Commit eb0b013

Browse files
committed
Use || true instead
We apparently can't use continue-on-error like this: ``` EmilienM/devstack-action/v0.2/action.yaml (Line: 29, Col: 7): Unexpected value 'continue-on-error' ```
1 parent 1a22dea commit eb0b013

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

action.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ runs:
2525
shell: bash
2626
# See http://lists.openstack.org/pipermail/openstack-discuss/2020-October/018060.html
2727
- name: Remove python3-simplejson
28-
run: sudo apt-get purge -y python3-simplejson
29-
continue-on-error: true
28+
run: sudo apt-get purge -y python3-simplejson || true
3029
shell: bash
3130
- name: Checkout Devstack
3231
uses: actions/checkout@v2

0 commit comments

Comments
 (0)