Skip to content

Commit

Permalink
fix: Update JOB_CACHE_PREFIX conditional logic in reusable Rust build…
Browse files Browse the repository at this point in the history
… workflow (#296)

fix(reusable-rust-build.yml): fix conditional logic for JOB_CACHE_PREFIX to correctly set fast or regular based on matrix.platform.fast-runtime value
  • Loading branch information
tenequm authored Oct 31, 2024
1 parent 027e31d commit 43ff46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-rust-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
fast-runtime: true
runs-on: ${{ matrix.platform.runner }}
env:
JOB_CACHE_PREFIX: finalizer-${{ matrix.platform.name }}${{ matrix.platform.fast-runtime && '-fast' || '' }}-${{ inputs.cache-version }}
JOB_CACHE_PREFIX: finalizer-${{ matrix.platform.name }}${{ matrix.platform.fast-runtime && 'fast' || 'regular' }}-${{ inputs.cache-version }}
CACHE_ARCHIVE_NAME: cache_archive.tar.zst
SERVICE_FOLDER: avs-finalizer
DOCKER_IMAGE_REPOSITORY: mangatasolutions/avs-finalizer
Expand Down

0 comments on commit 43ff46b

Please sign in to comment.