Skip to content

Commit

Permalink
Fix: Use grep directly
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 9, 2024
1 parent d62e419 commit d5e69d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -254,7 +254,7 @@ jobs:
run: ant phar-snapshot

- name: Check whether PHAR is scoped
run: cat build/artifacts/phpunit-snapshot.phar | grep -q PHPUnit\\\\DeepCopy\\\\Exception\\\\CloneException || (echo "phpunit-snapshot.phar is not scoped." && false)
run: grep -q PHPUnit\\\\DeepCopy\\\\Exception\\\\CloneException build/artifacts/phpunit-snapshot.phar || (echo "phpunit-snapshot.phar is not scoped." && false)

- name: Upload PHAR
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit d5e69d7

Please sign in to comment.