@capgo/cli 4.10.46 → 4.10.48
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 +19 -18
- package/CHANGELOG.md +14 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -105,18 +105,6 @@ jobs:
|
|
|
105
105
|
echo "Verifying ZIP file integrity for Linux build with zipinfo..."
|
|
106
106
|
zipinfo ./build-linux.zip || (echo "ZIP file is corrupted: build-linux.zip" && exit 1)
|
|
107
107
|
|
|
108
|
-
- name: Setup Java
|
|
109
|
-
uses: actions/setup-java@v3
|
|
110
|
-
with:
|
|
111
|
-
distribution: 'adopt'
|
|
112
|
-
java-version: '11'
|
|
113
|
-
|
|
114
|
-
- name: Compile VerifyZip.java
|
|
115
|
-
run: javac ./test/VerifyZip.java
|
|
116
|
-
|
|
117
|
-
- name: Verify ZIP file integrity for Linux build with Java
|
|
118
|
-
run: java VerifyZip build-linux.zip
|
|
119
|
-
|
|
120
108
|
- name: Verify POSIX paths for Linux build
|
|
121
109
|
run: |
|
|
122
110
|
unzip build-linux.zip -d extracted-linux
|
|
@@ -134,6 +122,18 @@ jobs:
|
|
|
134
122
|
echo "All paths are POSIX compliant in build-linux.zip."
|
|
135
123
|
fi
|
|
136
124
|
|
|
125
|
+
# - name: Setup Java
|
|
126
|
+
# uses: actions/setup-java@v3
|
|
127
|
+
# with:
|
|
128
|
+
# distribution: 'adopt'
|
|
129
|
+
# java-version: '11'
|
|
130
|
+
|
|
131
|
+
# - name: Compile VerifyZip.java
|
|
132
|
+
# run: javac ./test/VerifyZip.java
|
|
133
|
+
|
|
134
|
+
# - name: Verify ZIP file integrity for Linux build with Java
|
|
135
|
+
# run: java VerifyZip build-linux.zip
|
|
136
|
+
|
|
137
137
|
- name: Download build-windows-2019.zip artifact
|
|
138
138
|
uses: actions/download-artifact@v4
|
|
139
139
|
with:
|
|
@@ -163,12 +163,6 @@ jobs:
|
|
|
163
163
|
echo "Verifying ZIP file integrity for Windows 2022 build with zipinfo..."
|
|
164
164
|
zipinfo ./build-windows-2022.zip || (echo "ZIP file is corrupted: build-windows-2022.zip" && exit 1)
|
|
165
165
|
|
|
166
|
-
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
167
|
-
run: java VerifyZip build-windows-2019.zip
|
|
168
|
-
|
|
169
|
-
- name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
170
|
-
run: java VerifyZip build-windows-2022.zip
|
|
171
|
-
|
|
172
166
|
- name: Verify POSIX paths for Windows 2019 build
|
|
173
167
|
run: |
|
|
174
168
|
unzip build-windows-2019.zip -d extracted-2019
|
|
@@ -202,3 +196,10 @@ jobs:
|
|
|
202
196
|
else
|
|
203
197
|
echo "All paths are POSIX compliant in build-windows-2022.zip."
|
|
204
198
|
fi
|
|
199
|
+
|
|
200
|
+
# - name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
201
|
+
# run: java VerifyZip build-windows-2019.zip
|
|
202
|
+
|
|
203
|
+
# - name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
204
|
+
# run: java VerifyZip build-windows-2022.zip
|
|
205
|
+
|
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.48](https://github.com/Cap-go/CLI/compare/v4.10.47...v4.10.48) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* disable java for now ([386e7a7](https://github.com/Cap-go/CLI/commit/386e7a760d9d35a48988118059fac19990a24d32))
|
|
11
|
+
|
|
12
|
+
### [4.10.47](https://github.com/Cap-go/CLI/compare/v4.10.46...v4.10.47) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* do java last ([7374db6](https://github.com/Cap-go/CLI/commit/7374db68ac96dc4c0c8cd69452ad9485285f7d63))
|
|
18
|
+
|
|
5
19
|
### [4.10.46](https://github.com/Cap-go/CLI/compare/v4.10.45...v4.10.46) (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.48",
|
|
112910
112910
|
description: "A CLI to upload to capgo servers",
|
|
112911
112911
|
author: "github.com/riderx",
|
|
112912
112912
|
license: "Apache 2.0",
|