Compare commits

...

4 Commits

Author SHA1 Message Date
1b177037f5 v1.13.5
Some checks failed
CI / Type Check & Lint (push) Failing after 1s
CI / Build Test (Current Platform) (push) Failing after 1s
CI / Build All Platforms (push) Failing after 1s
Publish to npm / npm-publish (push) Failing after 1s
Release / build-and-release (push) Failing after 1s
2026-03-15 15:47:21 +00:00
9d6590927c fix(workflows): switch Gitea workflow containers from ht-docker-dbase to ht-docker-node 2026-03-15 15:47:21 +00:00
eaf401200c v1.13.4
Some checks failed
CI / Type Check & Lint (push) Failing after 2s
CI / Build Test (Current Platform) (push) Failing after 1s
CI / Build All Platforms (push) Failing after 1s
Publish to npm / npm-publish (push) Failing after 1s
Release / build-and-release (push) Failing after 1s
2026-03-15 15:44:54 +00:00
e97a4d53ae fix(ci): run workflows in the shared build container and enable corepack for pnpm installs 2026-03-15 15:44:54 +00:00
8 changed files with 35 additions and 4 deletions

View File

@@ -12,6 +12,8 @@ jobs:
check:
name: Type Check & Lint
runs-on: ubuntu-latest
container:
image: code.foss.global/hosttoday/ht-docker-node:latest
steps:
- name: Checkout code
@@ -39,6 +41,8 @@ jobs:
build:
name: Build Test (Current Platform)
runs-on: ubuntu-latest
container:
image: code.foss.global/hosttoday/ht-docker-node:latest
steps:
- name: Checkout code
@@ -54,6 +58,9 @@ jobs:
with:
node-version: '22'
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: pnpm install
@@ -73,6 +80,8 @@ jobs:
build-all:
name: Build All Platforms
runs-on: ubuntu-latest
container:
image: code.foss.global/hosttoday/ht-docker-node:latest
steps:
- name: Checkout code
@@ -88,6 +97,9 @@ jobs:
with:
node-version: '22'
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: pnpm install

View File

@@ -8,6 +8,8 @@ on:
jobs:
npm-publish:
runs-on: ubuntu-latest
container:
image: code.foss.global/hosttoday/ht-docker-node:latest
steps:
- name: Checkout code

View File

@@ -8,6 +8,8 @@ on:
jobs:
build-and-release:
runs-on: ubuntu-latest
container:
image: code.foss.global/hosttoday/ht-docker-node:latest
steps:
- name: Checkout code
@@ -25,6 +27,9 @@ jobs:
with:
node-version: '22'
- name: Enable corepack
run: corepack enable
- name: Install dependencies
run: pnpm install

View File

@@ -1,5 +1,17 @@
# Changelog
## 2026-03-15 - 1.13.5 - fix(workflows)
switch Gitea workflow containers from ht-docker-dbase to ht-docker-node
- Updates the CI, release, and npm publish workflows to use the Node-focused container image consistently.
- Aligns workflow runtime images with the project's Node and Deno build and publish steps.
## 2026-03-15 - 1.13.4 - fix(ci)
run workflows in the shared build container and enable corepack for pnpm installs
- adds the ht-docker-dbase container image to CI, release, and npm publish workflows
- enables corepack before pnpm install in build and release jobs to ensure package manager availability
## 2026-03-15 - 1.13.3 - fix(build)
replace custom Deno compile scripts with tsdeno-based binary builds in CI and release workflows

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/onebox",
"version": "1.13.3",
"version": "1.13.5",
"exports": "./mod.ts",
"tasks": {
"test": "deno test --allow-all test/",

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/onebox",
"version": "1.13.3",
"version": "1.13.5",
"description": "Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers",
"main": "mod.ts",
"type": "module",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/onebox',
version: '1.13.3',
version: '1.13.5',
description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers'
}

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/onebox',
version: '1.13.3',
version: '1.13.5',
description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers'
}