From 8dc188602c4bbba25f5ca25ee340e5cce9417050 Mon Sep 17 00:00:00 2001 From: ebner Date: Thu, 29 Jan 2026 17:32:11 +0100 Subject: [PATCH] update download url --- action.yml | 6 +++--- autodeploy/setup.sh | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) 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)