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 4172d04 commit 9f63300Copy full SHA for 9f63300
.github/workflows/build.yml
@@ -64,6 +64,7 @@ jobs:
64
65
build-previewctl:
66
name: Build previewctl
67
+ if: ${{ needs.configuration.outputs.is_main_branch == 'true' || needs.configuration.outputs.preview_enable == 'true' }}
68
needs: [configuration]
69
concurrency:
70
group: ${{ github.head_ref || github.ref }}-build-previewctl
@@ -216,7 +217,8 @@ jobs:
216
217
218
RESULT=0
219
set -x
- leeway build $PR_LEEWAY_TARGET \
220
+ # CI=true is a var set by GHA. Unsetting it for the build, as yarn builds treat warnings as errors if that var is set to true
221
+ CI= leeway build $PR_LEEWAY_TARGET \
222
--cache $CACHE \
223
$TEST \
224
-Dversion=$VERSION \
0 commit comments