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 .