@capgo/cli 4.10.37 → 4.10.38
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 +24 -7
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
run: node ./dist/index.js bundle zip --path test/test_upload -n build-${{ matrix.os }}.zip
|
|
39
39
|
|
|
40
40
|
- name: Upload build.zip artifact
|
|
41
|
-
uses: actions/upload-artifact@
|
|
41
|
+
uses: actions/upload-artifact@v4
|
|
42
42
|
with:
|
|
43
43
|
name: build-zip-${{ matrix.os }}
|
|
44
44
|
path: build-${{ matrix.os }}.zip
|
|
@@ -49,13 +49,13 @@ jobs:
|
|
|
49
49
|
|
|
50
50
|
steps:
|
|
51
51
|
- name: Download build-windows-2019.zip artifact
|
|
52
|
-
uses: actions/download-artifact@
|
|
52
|
+
uses: actions/download-artifact@v4
|
|
53
53
|
with:
|
|
54
54
|
name: build-zip-windows-2019
|
|
55
55
|
path: build-windows-2019.zip
|
|
56
56
|
|
|
57
57
|
- name: Download build-windows-2022.zip artifact
|
|
58
|
-
uses: actions/download-artifact@
|
|
58
|
+
uses: actions/download-artifact@v4
|
|
59
59
|
with:
|
|
60
60
|
name: build-zip-windows-2022
|
|
61
61
|
path: build-windows-2022.zip
|
|
@@ -66,14 +66,14 @@ jobs:
|
|
|
66
66
|
ls -lh /home/runner/work/CLI/CLI/build-windows-2019.zip
|
|
67
67
|
ls -lh /home/runner/work/CLI/CLI/build-windows-2022.zip
|
|
68
68
|
|
|
69
|
-
- name: Verify ZIP file integrity for Windows 2019 build
|
|
69
|
+
- name: Verify ZIP file integrity for Windows 2019 build with zipinfo
|
|
70
70
|
run: |
|
|
71
|
-
echo "Verifying ZIP file integrity for Windows 2019 build..."
|
|
71
|
+
echo "Verifying ZIP file integrity for Windows 2019 build with zipinfo..."
|
|
72
72
|
zipinfo /home/runner/work/CLI/CLI/build-windows-2019.zip || (echo "ZIP file is corrupted: build-windows-2019.zip" && exit 1)
|
|
73
73
|
|
|
74
|
-
- name: Verify ZIP file integrity for Windows 2022 build
|
|
74
|
+
- name: Verify ZIP file integrity for Windows 2022 build with zipinfo
|
|
75
75
|
run: |
|
|
76
|
-
echo "Verifying ZIP file integrity for Windows 2022 build..."
|
|
76
|
+
echo "Verifying ZIP file integrity for Windows 2022 build with zipinfo..."
|
|
77
77
|
zipinfo /home/runner/work/CLI/CLI/build-windows-2022.zip || (echo "ZIP file is corrupted: build-windows-2022.zip" && exit 1)
|
|
78
78
|
|
|
79
79
|
- name: Verify POSIX paths for Windows 2019 build
|
|
@@ -109,3 +109,20 @@ jobs:
|
|
|
109
109
|
else
|
|
110
110
|
echo "All paths are POSIX compliant in build-windows-2022.zip."
|
|
111
111
|
fi
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
- name: Setup Java
|
|
115
|
+
uses: actions/setup-java@v3
|
|
116
|
+
with:
|
|
117
|
+
distribution: 'adopt'
|
|
118
|
+
java-version: '11'
|
|
119
|
+
|
|
120
|
+
- name: Compile VerifyZip.java
|
|
121
|
+
run: javac test/VerifyZip.java
|
|
122
|
+
|
|
123
|
+
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
124
|
+
run: java VerifyZip /home/runner/work/CLI/CLI/build-windows-2019.zip
|
|
125
|
+
|
|
126
|
+
- name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
127
|
+
run: java VerifyZip /home/runner/work/CLI/CLI/build-windows-2022.zip
|
|
128
|
+
|
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.38](https://github.com/Cap-go/CLI/compare/v4.10.37...v4.10.38) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* try artifact v4 and add java command ([1ba8907](https://github.com/Cap-go/CLI/commit/1ba8907eaf82f16f61eec4c5b8c5d1beacd7dbd2))
|
|
11
|
+
|
|
5
12
|
### [4.10.37](https://github.com/Cap-go/CLI/compare/v4.10.36...v4.10.37) (2024-06-21)
|
|
6
13
|
|
|
7
14
|
### [4.10.36](https://github.com/Cap-go/CLI/compare/v4.10.35...v4.10.36) (2024-06-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.38",
|
|
112910
112910
|
description: "A CLI to upload to capgo servers",
|
|
112911
112911
|
author: "github.com/riderx",
|
|
112912
112912
|
license: "Apache 2.0",
|