@capgo/cli 4.10.48 → 4.10.50
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 +14 -14
- package/CHANGELOG.md +14 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -52,6 +52,7 @@ jobs:
|
|
|
52
52
|
|
|
53
53
|
check-posix-paths-windows:
|
|
54
54
|
runs-on: ${{ matrix.os }}
|
|
55
|
+
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
|
|
55
56
|
|
|
56
57
|
strategy:
|
|
57
58
|
matrix:
|
|
@@ -122,17 +123,17 @@ jobs:
|
|
|
122
123
|
echo "All paths are POSIX compliant in build-linux.zip."
|
|
123
124
|
fi
|
|
124
125
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
126
|
+
- name: Setup Java
|
|
127
|
+
uses: actions/setup-java@v4
|
|
128
|
+
with:
|
|
129
|
+
distribution: 'zulu'
|
|
130
|
+
java-version: '17'
|
|
130
131
|
|
|
131
|
-
|
|
132
|
-
|
|
132
|
+
- name: Compile VerifyZip.java
|
|
133
|
+
run: javac ./test/VerifyZip.java
|
|
133
134
|
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
- name: Verify ZIP file integrity for Linux build with Java
|
|
136
|
+
run: java -cp ./test VerifyZip build-linux.zip
|
|
136
137
|
|
|
137
138
|
- name: Download build-windows-2019.zip artifact
|
|
138
139
|
uses: actions/download-artifact@v4
|
|
@@ -197,9 +198,8 @@ jobs:
|
|
|
197
198
|
echo "All paths are POSIX compliant in build-windows-2022.zip."
|
|
198
199
|
fi
|
|
199
200
|
|
|
200
|
-
|
|
201
|
-
|
|
201
|
+
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
202
|
+
run: java -cp ./test VerifyZip build-windows-2019.zip
|
|
202
203
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
204
|
+
- name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
205
|
+
run: java -cp ./test VerifyZip build-windows-2022.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.50](https://github.com/Cap-go/CLI/compare/v4.10.49...v4.10.50) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* java ([502052c](https://github.com/Cap-go/CLI/commit/502052c192253e0629e328dcbedd55fd75cbdef8))
|
|
11
|
+
|
|
12
|
+
### [4.10.49](https://github.com/Cap-go/CLI/compare/v4.10.48...v4.10.49) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* disable on build + add back java ([e131c54](https://github.com/Cap-go/CLI/commit/e131c545708b4755efdf73dc9c5a3176634f11d3))
|
|
18
|
+
|
|
5
19
|
### [4.10.48](https://github.com/Cap-go/CLI/compare/v4.10.47...v4.10.48) (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.50",
|
|
112910
112910
|
description: "A CLI to upload to capgo servers",
|
|
112911
112911
|
author: "github.com/riderx",
|
|
112912
112912
|
license: "Apache 2.0",
|