diff --git a/action.yml b/action.yml index 9a86f44..7232f8e 100644 --- a/action.yml +++ b/action.yml @@ -9,7 +9,7 @@ inputs: repo: description: 'The owner/repo on Gitea.' required: false - default: 'xenoxindustries/weld' + default: 'interkonnekted/weld' token: description: 'Gitea Personal Access Token (PAT).' required: true @@ -30,7 +30,7 @@ runs: fi # Fetch release JSON from Gitea API - RESPONSE=$(curl -s -H "Authorization: token ${{ inputs.token }}" "$GITEA_URL/$ENDPOINT") + RESPONSE=$(curl -sL -H "Authorization: token ${{ inputs.token }}" "$GITEA_URL/$ENDPOINT") # Extract Tag and Download URL for the asset named 'weld' TAG=$(echo $RESPONSE | jq -r '.tag_name')