We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d492547 commit 99c0cabCopy full SHA for 99c0cab
.github/workflows/ci.yaml
@@ -65,9 +65,9 @@ jobs:
65
with open(github_output, 'a') as output_file:
66
print(f'{output_name}=success', file=output_file)
67
- if: always()
68
- run: echo "0" >> "pg_result_${{ matrix.os }}"
+ run: echo "0" > "pg_result_${{ matrix.os }}"
69
- if: failure()
70
- run: echo "1" >> "pg_result_${{ matrix.os }}"
+ run: echo "1" > "pg_result_${{ matrix.os }}"
71
- name: Upload result artifact
72
if: always()
73
uses: actions/upload-artifact@v4
0 commit comments