I have this step in a yaml workflow file:
- name: run the update_docs scripts
run: bash ./docs/update_docs.sh
When the workflow runs on the github server, the "Actions" tab provides me this output for this step:
Run bash ./docs/update_docs.sh
./docs/update_docs.sh: line 2: pdoc: command not found
mv: cannot stat './docs/folder/*': No such file or directory
Yet the step (and the whole workflow) is marked as successful.
- I tried to add a "fail-fast" strategy without success
- the string "continue-on-error" is not contained in the file
How to get the workflow to not pass on such error ?