Skip to content

Commit 8a6f03b

Browse files
committed
Fix inputs
1 parent 58a9073 commit 8a6f03b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/_build-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
run: echo "CARGO=cross" >> $GITHUB_ENV
9393

9494
- name: Build
95-
run: ${{ env.CARGO }} build --release --locked --target ${{ matrix.target }} --workspace --exclude scarb-prove --exclude scarb-verify ${{ inputs.include-cairols && '--exclude scarb-cairo-language-server' || ''}} --no-default-features ${{ inputs.include-lint && '--features scarb/scarb-lint' || ''}}
95+
run: ${{ env.CARGO }} build --release --locked --target ${{ matrix.target }} --workspace --exclude scarb-prove --exclude scarb-verify ${{ !inputs.include-cairols && '--exclude scarb-cairo-language-server' || ''}} --no-default-features ${{ !inputs.include-lint && '--features scarb/scarb-lint' || ''}}
9696

9797
- uses: dtolnay/rust-toolchain@master
9898
if: inputs.include-stwo

.github/workflows/nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ jobs:
152152
with:
153153
scarb-tag: v${{ needs.prepare.outputs.nightly_version }}
154154
ref: ${{ needs.prepare.outputs.nightly_branch }}
155-
include-cairols: ${{ inputs.include-cairols }}
156-
include-stwo: ${{ inputs.include-stwo }}
157-
include-lint: ${{ inputs.include-lint }}
155+
include-cairols: ${{ !!inputs.include-cairols }}
156+
include-stwo: ${{ !!inputs.include-stwo }}
157+
include-lint: ${{ !!inputs.include-lint }}
158158

159159
upload:
160160
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)