From 8a6f8b436b03109ae8b6fd43e94453b4f7faf8f7 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Wed, 17 Jun 2026 12:36:38 +0200 Subject: [PATCH] consistency in using ${} --- action.yml | 2 +- autodeploy/setup.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 1eb0e15..6a1a2f6 100644 --- a/action.yml +++ b/action.yml @@ -33,7 +33,7 @@ runs: path: tmp - name: Deploy files - run: rsync -rlv "${GITHUB_WORKSPACE}/tmp/" "${{ inputs.destination }}/" + run: rsync -rlv "$GITHUB_WORKSPACE/tmp/" "${{ inputs.destination }}/" shell: bash - name: Copy autodeploy into workspace diff --git a/autodeploy/setup.sh b/autodeploy/setup.sh index 3f86e9c..57116b0 100755 --- a/autodeploy/setup.sh +++ b/autodeploy/setup.sh @@ -26,12 +26,12 @@ SCRIPT_PATH=$(dirname "$0") export CONDA_OVERRIDE_GLIBC=2.28 -chmod +x "${GITHUB_WORKSPACE}/pixi" +chmod +x "$GITHUB_WORKSPACE/pixi" cd "$DESTINATION_DIR" -"${GITHUB_WORKSPACE}/pixi" init || true -"${GITHUB_WORKSPACE}/pixi" install --all +"$GITHUB_WORKSPACE/pixi" init || true +"$GITHUB_WORKSPACE/pixi" install --all # chmod -R g=u .