@capgo/cli 4.10.39 → 4.10.41
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.
- package/.github/workflows/check_posix_paths.yml +13 -3
- package/CHANGELOG.md +14 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -33,6 +33,16 @@ jobs:
|
|
|
33
33
|
id: create_zip
|
|
34
34
|
run: node ./dist/index.js bundle zip --path test/test_upload -n build-linux.zip
|
|
35
35
|
|
|
36
|
+
- name: Check build directory contents
|
|
37
|
+
run: |
|
|
38
|
+
echo "Listing contents of the build directory..."
|
|
39
|
+
ls -R ./dist
|
|
40
|
+
|
|
41
|
+
- name: Check ZIP file contents
|
|
42
|
+
run: |
|
|
43
|
+
echo "Listing contents of the ZIP file..."
|
|
44
|
+
unzip -l build-linux.zip
|
|
45
|
+
|
|
36
46
|
- name: Upload build-linux.zip artifact
|
|
37
47
|
uses: actions/upload-artifact@v4
|
|
38
48
|
with:
|
|
@@ -90,7 +100,7 @@ jobs:
|
|
|
90
100
|
- name: Verify ZIP file integrity for Linux build with zipinfo
|
|
91
101
|
run: |
|
|
92
102
|
echo "Verifying ZIP file integrity for Linux build with zipinfo..."
|
|
93
|
-
zipinfo build-linux.zip || (echo "ZIP file is corrupted: build-linux.zip" && exit 1)
|
|
103
|
+
zipinfo ./build-linux.zip || (echo "ZIP file is corrupted: build-linux.zip" && exit 1)
|
|
94
104
|
|
|
95
105
|
- name: Setup Java
|
|
96
106
|
uses: actions/setup-java@v3
|
|
@@ -142,12 +152,12 @@ jobs:
|
|
|
142
152
|
- name: Verify ZIP file integrity for Windows 2019 build with zipinfo
|
|
143
153
|
run: |
|
|
144
154
|
echo "Verifying ZIP file integrity for Windows 2019 build with zipinfo..."
|
|
145
|
-
zipinfo build-windows-2019.zip || (echo "ZIP file is corrupted: build-windows-2019.zip" && exit 1)
|
|
155
|
+
zipinfo ./build-windows-2019.zip || (echo "ZIP file is corrupted: build-windows-2019.zip" && exit 1)
|
|
146
156
|
|
|
147
157
|
- name: Verify ZIP file integrity for Windows 2022 build with zipinfo
|
|
148
158
|
run: |
|
|
149
159
|
echo "Verifying ZIP file integrity for Windows 2022 build with zipinfo..."
|
|
150
|
-
zipinfo build-windows-2022.zip || (echo "ZIP file is corrupted: build-windows-2022.zip" && exit 1)
|
|
160
|
+
zipinfo ./build-windows-2022.zip || (echo "ZIP file is corrupted: build-windows-2022.zip" && exit 1)
|
|
151
161
|
|
|
152
162
|
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
153
163
|
run: java VerifyZip build-windows-2019.zip
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.41](https://github.com/Cap-go/CLI/compare/v4.10.40...v4.10.41) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* zipinfo ([acb92ce](https://github.com/Cap-go/CLI/commit/acb92cee851d22c4fb7074b4d5074cdcc6b3eb44))
|
|
11
|
+
|
|
12
|
+
### [4.10.40](https://github.com/Cap-go/CLI/compare/v4.10.39...v4.10.40) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* better test ([0bf19ce](https://github.com/Cap-go/CLI/commit/0bf19ce088c6c97ed0bdca8c277b1c973c493645))
|
|
18
|
+
|
|
5
19
|
### [4.10.39](https://github.com/Cap-go/CLI/compare/v4.10.38...v4.10.39) (2024-06-21)
|
|
6
20
|
|
|
7
21
|
|
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.
|
|
112909
|
+
version: "4.10.41",
|
|
112910
112910
|
description: "A CLI to upload to capgo servers",
|
|
112911
112911
|
author: "github.com/riderx",
|
|
112912
112912
|
license: "Apache 2.0",
|