diff --git a/action.yml b/action.yml index e1c38a8..e20e133 100644 --- a/action.yml +++ b/action.yml @@ -22,8 +22,8 @@ runs: shell: bash - name: Run autodeploy setup script - working-directory: ${{ github.workspace }}/autodeploy + working-directory: ${{ github.workspace }} run: | - chmod +x setup.sh - ./setup.sh + chmod +x autodeploy/setup.sh + ./autodeploy/setup.sh shell: bash diff --git a/autodeploy/setup.sh b/autodeploy/setup.sh index 2f90c4d..74d3bfc 100755 --- a/autodeploy/setup.sh +++ b/autodeploy/setup.sh @@ -3,7 +3,8 @@ set -euo pipefail -URL="https://github.com/prefix-dev/pixi/releases/latest/download/pixi-x86_64-unknown-linux-musl.tar.gz" +# URL="https://github.com/prefix-dev/pixi/releases/latest/download/pixi-x86_64-unknown-linux-musl.tar.gz" +URL="https://gitea.psi.ch/python/pixi/releases/download/latest/pixi-x86_64-unknown-linux-musl.tar.gz" ARCHIVE=$(basename "$URL") BINARY=$(echo "$ARCHIVE" | cut -d. -f1 | cut -d- -f1)