@capgo/cli 4.10.34 → 4.10.35

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.
@@ -48,16 +48,13 @@ jobs:
48
48
  needs: check-posix-paths-windows
49
49
 
50
50
  steps:
51
- - name: Checkout repository
52
- uses: actions/checkout@v3
53
-
54
- - name: Download build.zip artifacts
51
+ - name: Download build-windows-2019.zip artifact
55
52
  uses: actions/download-artifact@v2
56
53
  with:
57
54
  name: build-zip-windows-2019
58
55
  path: build-windows-2019.zip
59
56
 
60
- - name: Download build.zip artifacts
57
+ - name: Download build-windows-2022.zip artifact
61
58
  uses: actions/download-artifact@v2
62
59
  with:
63
60
  name: build-zip-windows-2022
@@ -69,9 +66,23 @@ jobs:
69
66
  ls -lh /home/runner/work/CLI/CLI/build-windows-2019.zip
70
67
  ls -lh /home/runner/work/CLI/CLI/build-windows-2022.zip
71
68
 
69
+ - name: Verify ZIP file integrity for Windows 2019 build
70
+ run: |
71
+ if ! unzip -tq /home/runner/work/CLI/CLI/build-windows-2019.zip; then
72
+ echo "ZIP file is corrupted: build-windows-2019.zip"
73
+ exit 1
74
+ fi
75
+
76
+ - name: Verify ZIP file integrity for Windows 2022 build
77
+ run: |
78
+ if ! unzip -tq /home/runner/work/CLI/CLI/build-windows-2022.zip; then
79
+ echo "ZIP file is corrupted: build-windows-2022.zip"
80
+ exit 1
81
+ fi
82
+
72
83
  - name: Verify POSIX paths for Windows 2019 build
73
84
  run: |
74
- unzip /home/runner/work/CLI/CLI/build-windows-2019 -d extracted-2019
85
+ unzip /home/runner/work/CLI/CLI/build-windows-2019.zip -d extracted-2019
75
86
  error_found=false
76
87
  find extracted-2019 -type f | while read -r file; do
77
88
  if [[ "$file" =~ "\\" ]]; then
@@ -88,7 +99,7 @@ jobs:
88
99
 
89
100
  - name: Verify POSIX paths for Windows 2022 build
90
101
  run: |
91
- unzip /home/runner/work/CLI/CLI/build-windows-2022 -d extracted-2022
102
+ unzip /home/runner/work/CLI/CLI/build-windows-2022.zip -d extracted-2022
92
103
  error_found=false
93
104
  find extracted-2022 -type f | while read -r file; do
94
105
  if [[ "$file" =~ "\\" ]]; then
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.10.35](https://github.com/Cap-go/CLI/compare/v4.10.34...v4.10.35) (2024-06-21)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * test file before unzip ([9ec2ac3](https://github.com/Cap-go/CLI/commit/9ec2ac31b53cd3c5ccd76f3cb3d72cdfada63a84))
11
+
5
12
  ### [4.10.34](https://github.com/Cap-go/CLI/compare/v4.10.33...v4.10.34) (2024-06-21)
6
13
 
7
14
 
package/dist/index.js CHANGED
@@ -112906,7 +112906,7 @@ var {
112906
112906
  // package.json
112907
112907
  var package_default = {
112908
112908
  name: "@capgo/cli",
112909
- version: "4.10.34",
112909
+ version: "4.10.35",
112910
112910
  description: "A CLI to upload to capgo servers",
112911
112911
  author: "github.com/riderx",
112912
112912
  license: "Apache 2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.10.34",
3
+ "version": "4.10.35",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "author": "github.com/riderx",
6
6
  "license": "Apache 2.0",