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 12f6463 commit e529f3dCopy full SHA for e529f3d
.github/workflows/pull-request.yaml
@@ -35,9 +35,12 @@ jobs:
35
- name: Build
36
id: build
37
continue-on-error: true
38
- run: CI=false yarn build # CI=false here as copy-clickhouse-repo-docs uses it as a flag to
39
- # not look for ClickHouse repo locally but rather pull the repo
+ run: |
+ CI=false yarn build # CI=false here as copy-clickhouse-repo-docs uses it as a flag to not look for ClickHouse repo locally but rather pull the repo
40
+ echo "::set-output name=exit_code::$?"
41
42
- name: Check Build Result
- if: steps.build.outcome == 'failure' && steps.build.exitCode == 1
43
- run: exit 1
+ if: steps.build.outputs.exit_code == '1'
44
45
+ echo "Build failed with exit code 1"
46
+ exit 1
0 commit comments