8 Commits

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

### Bug Fixes

* add debug echo ([e2d3530](e2d3530e0f))
2026-01-08 19:50:56 +00:00
e2d3530e0f fix: add debug echo
All checks were successful
Release / Release (push) Successful in 15s
2026-01-08 19:50:43 +00:00
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
semantic-release-bot
f4e8637479 chore(release): 1.0.1 [skip ci]
## [1.0.1](https://git.xenoxindustries.com/xenoxindustries/setup-weld/compare/v1.0.0...v1.0.1) (2026-01-08)

### Bug Fixes

* **ci:** added semantic-release-gitea ([ecf458e](ecf458e70a))
* **ci:** configure git for gitea ([0eb9721](0eb97212ff))
* **ci:** remove npm cache option ([df78b3f](df78b3fa7a))
2026-01-08 10:04:18 +00:00
df78b3fa7a fix(ci): remove npm cache option
All checks were successful
Release / Release (push) Successful in 15s
2026-01-08 13:03:52 +03:00
0eb97212ff fix(ci): configure git for gitea
Some checks failed
Release / Release (push) Has been cancelled
2026-01-08 12:52:30 +03:00
ecf458e70a fix(ci): added semantic-release-gitea
Some checks failed
Release / Release (push) Has been cancelled
2026-01-08 11:58:25 +03:00
6 changed files with 728 additions and 4 deletions

View File

@@ -27,9 +27,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Configure Git for Gitea
run: |
git config --global url."https://${{ secrets.GITEA_TOKEN }}@git.xenoxindustries.com/".insteadOf "https://git.xenoxindustries.com/"
- name: Release
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}

View File

@@ -7,6 +7,11 @@
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
}],
[
"@saithodev/semantic-release-gitea", {
"giteaUrl": "https://git.xenoxindustries.com"
}
]
]
}

View File

@@ -1,3 +1,26 @@
## [1.0.3](https://git.xenoxindustries.com/interkonnekted/setup-weld/compare/v1.0.2...v1.0.3) (2026-01-08)
### Bug Fixes
* add debug echo ([e2d3530](https://git.xenoxindustries.com/interkonnekted/setup-weld/commit/e2d3530e0fc0c07fb3eb56957c8ade9c9cc31c1d))
## [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)
### Bug Fixes
* **ci:** added semantic-release-gitea ([ecf458e](https://git.xenoxindustries.com/xenoxindustries/setup-weld/commit/ecf458e70ad4f6a6e0cc5980dffe167560a5b1bf))
* **ci:** configure git for gitea ([0eb9721](https://git.xenoxindustries.com/xenoxindustries/setup-weld/commit/0eb97212ffc0963a411e907b6688f88a7e5c9a30))
* **ci:** remove npm cache option ([df78b3f](https://git.xenoxindustries.com/xenoxindustries/setup-weld/commit/df78b3fa7a8ea9b3b68c161ba5875ba8b7b4b06e))
# 1.0.0 (2026-01-08)

View File

@@ -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,8 @@ 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")
echo $RESPONSE
# Extract Tag and Download URL for the asset named 'weld'
TAG=$(echo $RESPONSE | jq -r '.tag_name')

View File

@@ -13,6 +13,7 @@
],
"author": "",
"devDependencies": {
"@saithodev/semantic-release-gitea": "^2.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^24.2.9"

692
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff