Compare commits

..

4 Commits

Author SHA1 Message Date
638b94f82f v7.1.2
Some checks failed
CI / Type Check & Lint (push) Successful in 36s
CI / Build Test (Current Platform) (push) Successful in 42s
Publish to npm / npm-publish (push) Failing after 1m8s
CI / Build All Platforms (push) Successful in 2m23s
Release / build-and-release (push) Successful in 2m34s
2026-02-08 12:49:03 +00:00
8a2e32dcd4 fix(readme): Correct license link and fix markdown line break for company name in README 2026-02-08 12:49:03 +00:00
2c89cc6a0a v7.1.1
Some checks failed
CI / Type Check & Lint (push) Successful in 33s
CI / Build Test (Current Platform) (push) Successful in 39s
Publish to npm / npm-publish (push) Failing after 1m4s
CI / Build All Platforms (push) Successful in 2m16s
Release / build-and-release (push) Successful in 2m41s
2026-02-07 09:50:31 +00:00
bad663d5e4 fix(workflows): normalize default branch to main across CI/release workflows and docs; update package metadata; clean .gitignore and fix readme license link 2026-02-07 09:50:31 +00:00
10 changed files with 29 additions and 21 deletions

View File

@@ -6,7 +6,7 @@ This directory contains Gitea Actions workflows for automated CI/CD of the SZCI
### 1. CI (`ci.yml`) ### 1. CI (`ci.yml`)
**Trigger:** Push to `master` branch or pull requests **Trigger:** Push to `main` branch or pull requests
**Purpose:** Continuous integration checks on every push **Purpose:** Continuous integration checks on every push
@@ -87,7 +87,7 @@ To create a new release:
3. **Create and push tag:** 3. **Create and push tag:**
```bash ```bash
git tag v6.0.1 git tag v6.0.1
git push origin master git push origin main
git push origin v6.0.1 git push origin v6.0.1
``` ```

View File

@@ -3,10 +3,10 @@ name: CI
on: on:
push: push:
branches: branches:
- master - main
pull_request: pull_request:
branches: branches:
- master - main
jobs: jobs:
check: check:

View File

@@ -117,7 +117,7 @@ jobs:
Use the installation script: Use the installation script:
\`\`\`bash \`\`\`bash
curl -sSL https://code.foss.global/ship.zone/szci/raw/branch/master/install.sh | sudo bash curl -sSL https://code.foss.global/ship.zone/szci/raw/branch/main/install.sh | sudo bash
\`\`\` \`\`\`
Or download the binary for your platform and make it executable. Or download the binary for your platform and make it executable.
@@ -143,7 +143,7 @@ jobs:
Use the installation script: Use the installation script:
\`\`\`bash \`\`\`bash
curl -sSL https://code.foss.global/ship.zone/szci/raw/branch/master/install.sh | sudo bash curl -sSL https://code.foss.global/ship.zone/szci/raw/branch/main/install.sh | sudo bash
\`\`\` \`\`\`
EOF EOF
fi fi
@@ -244,5 +244,5 @@ jobs:
echo "https://code.foss.global/ship.zone/szci/releases/tag/${{ steps.version.outputs.version }}" echo "https://code.foss.global/ship.zone/szci/releases/tag/${{ steps.version.outputs.version }}"
echo "" echo ""
echo "Installation command:" echo "Installation command:"
echo "curl -sSL https://code.foss.global/ship.zone/szci/raw/branch/master/install.sh | sudo bash" echo "curl -sSL https://code.foss.global/ship.zone/szci/raw/branch/main/install.sh | sudo bash"
echo "" echo ""

9
.gitignore vendored
View File

@@ -1,17 +1,10 @@
.nogit/ .nogit/
# artifacts
coverage/
public/
pages/
# installs # installs
node_modules/ node_modules/
# caches # caches
.yarn/
.cache/ .cache/
.rpt2_cache
# builds # builds
dist/ dist/
@@ -21,4 +14,4 @@ dist_*/
deno.lock deno.lock
.deno/ .deno/
# custom # custom

View File

@@ -1,5 +1,20 @@
# Changelog # Changelog
## 2026-02-08 - 7.1.2 - fix(readme)
Correct license link and fix markdown line break for company name in README
- Updated README link to the license file from ./license to ./LICENSE
- Added trailing spaces after 'Task Venture Capital GmbH' to preserve a Markdown line break
- Documentation-only change; no code modified
## 2026-02-07 - 7.1.1 - fix(workflows)
normalize default branch to 'main' across CI/release workflows and docs; update package metadata; clean .gitignore and fix readme license link
- Updated workflow triggers and documentation from 'master' to 'main' (.gitea/workflows/ci.yml, .gitea/workflows/release.yml, .gitea/workflows/README.md) including install script URLs referenced in release instructions.
- Updated npmextra.json @git.zone/cli metadata: changed projectType from 'npm' to 'deno' and githost from 'gitlab.com' to 'code.foss.global'.
- Cleaned .gitignore by removing outdated entries (coverage/, public/, pages/, .yarn/, .rpt2_cache) and minor whitespace fixes.
- Normalized license filename link in readme.md from 'LICENSE' to lowercase 'license'.
## 2026-02-07 - 7.1.0 - feat(installer) ## 2026-02-07 - 7.1.0 - feat(installer)
switch installer/docs to use main branch; add automated installer instructions and update CI examples to use the installer; add release registries and access level in npmextra.json switch installer/docs to use main branch; add automated installer instructions and update CI examples to use the installer; add release registries and access level in npmextra.json

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ship.zone/szci", "name": "@ship.zone/szci",
"version": "7.1.0", "version": "7.1.2",
"exports": "./mod.ts", "exports": "./mod.ts",
"nodeModulesDir": "auto", "nodeModulesDir": "auto",
"tasks": { "tasks": {

View File

@@ -8,9 +8,9 @@
"command": "szci test stable" "command": "szci test stable"
}, },
"@git.zone/cli": { "@git.zone/cli": {
"projectType": "npm", "projectType": "deno",
"module": { "module": {
"githost": "gitlab.com", "githost": "code.foss.global",
"gitscope": "ship.zone", "gitscope": "ship.zone",
"gitrepo": "szci", "gitrepo": "szci",
"description": "A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.", "description": "A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ship.zone/szci", "name": "@ship.zone/szci",
"version": "7.1.0", "version": "7.1.2",
"description": "Serve Zone CI - A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities. Powered by Deno with standalone executables.", "description": "Serve Zone CI - A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities. Powered by Deno with standalone executables.",
"keywords": [ "keywords": [
"Node.js", "Node.js",

View File

@@ -383,7 +383,7 @@ Use of these trademarks must comply with Task Venture Capital GmbH's Trademark G
### Company Information ### Company Information
Task Venture Capital GmbH Task Venture Capital GmbH
Registered at District Court Bremen HRB 35230 HB, Germany Registered at District Court Bremen HRB 35230 HB, Germany
For any legal inquiries or further information, please contact us via email at hello@task.vc. For any legal inquiries or further information, please contact us via email at hello@task.vc.

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@ship.zone/szci', name: '@ship.zone/szci',
version: '7.1.0', version: '7.1.2',
description: 'Serve Zone CI - A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities. Powered by Deno with standalone executables.' description: 'Serve Zone CI - A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities. Powered by Deno with standalone executables.'
} }