fix: forgot a pipe

This commit is contained in:
Tom Hu 2024-11-19 17:31:09 -05:00
parent f89dff9cb6
commit 1a5884c9ef
No known key found for this signature in database
GPG key ID: 79155678363963D2

View file

@ -157,8 +157,8 @@ runs:
- name: Action version
shell: bash
run: |
CC_ACTION_VERSION=$(cat ${GITHUB_ACTION_PATH}/src/version | grep 'CODECOV_ACTION_VERSION=' cut -d\" -f2)
echo -e "\033[0;32m==>\033[0m Running Action version $$CC_ACTION_VERSION"
CC_ACTION_VERSION=$(cat ${GITHUB_ACTION_PATH}/src/version | grep 'CODECOV_ACTION_VERSION=' | cut -d\" -f2)
echo -e "\033[0;32m==>\033[0m Running Action version $CC_ACTION_VERSION"
- name: Set safe directory
if: ${{ inputs.disable_safe_directory != 'true' }}
shell: bash