Skip to content

Commit 6b61ba2

Browse files
fixes
1 parent eb54f95 commit 6b61ba2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/macos.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ jobs:
4545
run: |
4646
env | sort
4747
echo ${PATH} | tr ':' '\n'
48-
python --version | tee --append "${GITHUB_STEP_SUMMARY}"
49-
conan --version | tee --append "${GITHUB_STEP_SUMMARY}"
50-
cmake --version | tee --append "${GITHUB_STEP_SUMMARY}"
48+
python --version | tee -a "${GITHUB_STEP_SUMMARY}"
49+
conan --version | tee -a "${GITHUB_STEP_SUMMARY}"
50+
cmake --version | tee -a "${GITHUB_STEP_SUMMARY}"
5151
- name: configure Conan
5252
run : |
5353
conan config install .github/conan/
5454
conan profile detect --name detected || true
5555
touch $(conan config home)/profiles/matrix
5656
echo '```' >> "${GITHUB_STEP_SUMMARY}"
57-
conan profile show --profile default | tee --append "${GITHUB_STEP_SUMMARY}"
57+
conan profile show --profile default | tee -a "${GITHUB_STEP_SUMMARY}"
5858
echo '```' >> "${GITHUB_STEP_SUMMARY}"
5959
- name: build dependencies
6060
uses: ./.github/actions/dependencies

.github/workflows/windows.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
run: |
6161
dir env:
6262
$env:PATH -split ';'
63-
python --version | tee --append "$env:GITHUB_STEP_SUMMARY"
64-
conan --version | tee --append "$env:GITHUB_STEP_SUMMARY"
65-
cmake --version | tee --append "$env:GITHUB_STEP_SUMMARY"
63+
python --version | tee -Append "$env:GITHUB_STEP_SUMMARY"
64+
conan --version | tee -Append "$env:GITHUB_STEP_SUMMARY"
65+
cmake --version | tee -Append "$env:GITHUB_STEP_SUMMARY"
6666
- name: configure Conan
6767
shell: bash
6868
run: |

0 commit comments

Comments
 (0)