Compare commits

...

3 Commits

Author SHA1 Message Date
release-bot
52d129f50a chore(release): bump version to v26.03.21.e [skip ci] 2026-03-21 22:55:39 +00:00
c8b43a3f8f fix(release): exclude current tag from previous tag lookup and handle empty result
All checks were successful
Changelog + Release on main / changelog_and_release (push) Successful in 9m57s
- Exclude newly created tag from PREV_TAG detection to avoid self-referencing ranges
- Add fallback to prevent workflow failure when no previous tag exists
- Update Node version in workflow configuration

Signed-off-by: Alexander Lyall <alex@adcm.uk>
2026-03-21 22:50:21 +00:00
63e2c267fb Merge pull request 'chore(deps): update dependency node to v22.22.1' (#22) from renovate/node-22.x into main
Some checks failed
Changelog + Release on main / changelog_and_release (push) Failing after 39s
Reviewed-on: #22
2026-03-21 22:47:57 +00:00
3 changed files with 7 additions and 5 deletions

View File

@@ -95,8 +95,10 @@ jobs:
PREV_TAG="$(
git tag --list 'v*' \
| grep -E '^v[0-9]{2}\.[0-9]{2}\.[0-9]{2}[a-z]$' \
| grep -Fxv "$TAG" \
| sort -V \
| tail -n 1
| tail -n 1 \
|| true
)"
if [ -n "$PREV_TAG" ]; then
@@ -196,7 +198,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: 22.22.1
node-version: 25
cache: npm
- name: Check Node version

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "computing-box",
"version": "26.3.2-1.d",
"version": "26.3.2-1.e",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "computing-box",
"version": "26.3.2-1.d",
"version": "26.3.2-1.e",
"dependencies": {
"astro": "^6.0.8"
}

View File

@@ -1,7 +1,7 @@
{
"name": "computing-box",
"type": "module",
"version": "26.3.2-1.d",
"version": "26.3.2-1.e",
"scripts": {
"dev": "astro dev",
"build": "astro build",