diff --git a/.forgejo/actions/prepare-rust/action.yaml b/.forgejo/actions/prepare-rust/action.yaml index 364ec59..d3401d6 100644 --- a/.forgejo/actions/prepare-rust/action.yaml +++ b/.forgejo/actions/prepare-rust/action.yaml @@ -47,8 +47,8 @@ runs: name: Export path if: steps.cache.outputs.cache-hit == 'true' run: | - $HOME/.cargo/bin >> $GITHUB_PATH - $HOME/.rustup/bin >> $GITHUB_PATH + echo "${HOME}/.cargo/bin" >> "${GITHUB_PATH}" + echo "${HOME}/.rustup/bin" >> "${GITHUB_PATH}" - name: Populate rust cache if: steps.cache.outputs.cache-hit != 'true'