fix: update syntax for environment variable assignments in build workflows

This commit is contained in:
mr. M
2025-04-01 19:52:54 +02:00
parent aa673cc361
commit 40813820da
3 changed files with 6 additions and 6 deletions

View File

@@ -31,9 +31,9 @@ jobs:
matrix:
arch: [x86_64, aarch64]
env:
SCCACHE_GHA_ENABLED: ${ inputs.use-sccache && 'true' || 'false' }
SCCACHE_GHA_ENABLED: ${{ inputs.use-sccache && 'true' || 'false' }}
CARGO_TERM_COLOR: always
RUSTC_WRAPPER: ${ inputs.use-sccache && 'sccache' || '' }
RUSTC_WRAPPER: ${{ inputs.use-sccache && 'sccache' || '' }}
CARGO_INCREMENTAL: 0
steps:
- name: Checkout repository