2 Commits

Author SHA1 Message Date
semantic-release-bot
da06878348 chore(release): 1.0.2 [skip ci]
## [1.0.2](https://git.xenoxindustries.com/interkonnekted/setup-weld/compare/v1.0.1...v1.0.2) (2026-01-08)

### Bug Fixes

* added curl follow redirect and change repo name ([2773b04](2773b04158))
2026-01-08 19:27:20 +00:00
2773b04158 fix: added curl follow redirect and change repo name
All checks were successful
Release / Release (push) Successful in 50s
2026-01-08 18:22:23 +00:00
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
## [1.0.2](https://git.xenoxindustries.com/interkonnekted/setup-weld/compare/v1.0.1...v1.0.2) (2026-01-08)
### Bug Fixes
* added curl follow redirect and change repo name ([2773b04](https://git.xenoxindustries.com/interkonnekted/setup-weld/commit/2773b04158aea1beb5ad2483a9c242e6c3dab063))
## [1.0.1](https://git.xenoxindustries.com/xenoxindustries/setup-weld/compare/v1.0.0...v1.0.1) (2026-01-08) ## [1.0.1](https://git.xenoxindustries.com/xenoxindustries/setup-weld/compare/v1.0.0...v1.0.1) (2026-01-08)

View File

@@ -9,7 +9,7 @@ inputs:
repo: repo:
description: 'The owner/repo on Gitea.' description: 'The owner/repo on Gitea.'
required: false required: false
default: 'xenoxindustries/weld' default: 'interkonnekted/weld'
token: token:
description: 'Gitea Personal Access Token (PAT).' description: 'Gitea Personal Access Token (PAT).'
required: true required: true
@@ -30,7 +30,7 @@ runs:
fi fi
# Fetch release JSON from Gitea API # 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' # Extract Tag and Download URL for the asset named 'weld'
TAG=$(echo $RESPONSE | jq -r '.tag_name') TAG=$(echo $RESPONSE | jq -r '.tag_name')