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 8640c1a commit ede8d46Copy full SHA for ede8d46
.github/actions/cache/action.yml
@@ -13,8 +13,10 @@ runs:
13
steps:
14
- name: Normalize key
15
id: normalized-key
16
- run: echo "key=$(echo "${{ inputs.key }}" | tr -d ',')" >> $GITHUB_OUTPUT
+ run: echo "key=$(echo "${KEY}" | tr -d ',')" >> $GITHUB_OUTPUT
17
shell: bash
18
+ env:
19
+ KEY: "${{ inputs.key }}"
20
- uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
21
with:
22
key: ${{ steps.normalized-key.outputs.key }}-3
0 commit comments