Fix action syntax

This commit is contained in:
allegroai 2021-12-22 18:23:28 +02:00
parent bdce3c21f3
commit f2cd4834ec

View File

@ -27,4 +27,5 @@ jobs:
# Runs a single command using the runners shell
- name: Run a one-line script
run: grep -r -Eoh "(https://github.com/[a-zA-Z0-9./?=_%:-]*)" $GITHUB_WORKSPACE | sort -u | xargs sh -c 'curl --output /dev/null --silent --head --fail $0 || curl --output /dev/null --silent --head --fail --write-out "%{url_effective}: %{http_code}\n" $0 || exit 255'
run: |
grep -r -Eoh "(https://github.com/[a-zA-Z0-9./?=_%:-]*)" $GITHUB_WORKSPACE | sort -u | xargs sh -c 'curl --output /dev/null --silent --head --fail $0 || curl --output /dev/null --silent --head --fail --write-out "%{url_effective}: %{http_code}\n" $0 || exit 255'