@git.zone/cli 6.6.1 → 6.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,17 +40,18 @@ jobs:
40
40
  if: steps.retention.outputs.retained != 'true'
41
41
  id: prepared
42
42
  run: node scripts/gitzone-sealed-release.mjs prepare
43
- # Gitea's legacy Actions artifact protocol is supported by the v3 actions.
43
+ # Gitea's REST retention API requires finalized v4 artifacts.
44
+ # Gitea Runner 3.3.2+ supports these stock actions through its results service.
44
45
  - name: Retain the complete output before publication
45
46
  if: steps.retention.outputs.retained != 'true'
46
- uses: https://github.com/actions/upload-artifact@c6a3b2bd78b3985e4b2f15397fec357f0fd808de # v3.2.2-node20
47
+ uses: https://github.com/actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
47
48
  with:
48
49
  name: ${-{ steps.retention.outputs.artifact }-}
49
50
  path: ${-{ steps.retention.outputs.output }-}/
50
51
  if-no-files-found: error
51
52
  retention-days: 90
52
53
  - name: Download retained bytes into a fresh directory
53
- uses: https://github.com/actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
54
+ uses: https://github.com/actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
54
55
  with:
55
56
  name: ${-{ steps.retention.outputs.artifact }-}
56
57
  path: dist_gitzone_retained
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/cli',
6
- version: '6.6.1',
6
+ version: '6.6.2',
7
7
  description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxlQUFlO0lBQ3JCLE9BQU8sRUFBRSxPQUFPO0lBQ2hCLFdBQVcsRUFBRSwrTEFBK0w7Q0FDN00sQ0FBQSJ9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@git.zone/cli",
3
3
  "private": false,
4
- "version": "6.6.1",
4
+ "version": "6.6.2",
5
5
  "description": "A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.",
6
6
  "main": "dist_ts/index.js",
7
7
  "typings": "dist_ts/index.d.ts",
@@ -40,7 +40,7 @@
40
40
  "homepage": "https://code.foss.global/git.zone/cli#README",
41
41
  "devDependencies": {
42
42
  "@git.zone/tsbuild": "^4.4.2",
43
- "@git.zone/tspack": "1.1.0",
43
+ "@git.zone/tspack": "1.2.0",
44
44
  "@git.zone/tsrun": "^2.0.6",
45
45
  "@git.zone/tstest": "^4.0.0",
46
46
  "@types/node": "26.4.0"
package/readme.md CHANGED
@@ -511,8 +511,15 @@ are explicit executable/argument arrays; GitZone does not interpolate a shell.
511
511
  Run `gitzone format --only assets --write --yes` and commit the generated files.
512
512
  The normal authorized `gitzone release -y` pushes the tag that triggers this CI flow.
513
513
 
514
+ The runner must support Gitea's v4 artifact protocol through the stock artifact
515
+ actions: use Gitea Runner 3.3.2 or later with its cache/results service enabled and
516
+ reachable from job containers, and keep `runner.patch_actions` enabled. The pinned
517
+ actions run on Node.js 24. Follow the [Gitea runner upgrade guide](https://docs.gitea.com/runner/develop/upgrade/)
518
+ when upgrading an older runner; legacy v3 artifacts are absent from Gitea's REST
519
+ artifact inventory and cannot satisfy this workflow's retention check.
520
+
514
521
  Before any release mutation, the workflow retains the complete output root for
515
- 90 days using Gitea's v3 Actions artifact protocol, downloads it into a fresh
522
+ 90 days using Gitea's v4 Actions artifact protocol, downloads it into a fresh
516
523
  directory, checks the component's reuse result, and verifies every archive through
517
524
  TsPack. The remote tag must match the sealed source commit. Publication creates a
518
525
  draft, downloads and checks existing attachments, uploads only missing files, and
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@git.zone/cli',
6
- version: '6.6.1',
6
+ version: '6.6.2',
7
7
  description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
8
8
  }