@capgo/cli 4.10.45 → 4.10.47
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 +20 -18
- package/CHANGELOG.md +15 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ on:
|
|
|
10
10
|
|
|
11
11
|
jobs:
|
|
12
12
|
create-valid-zip-linux:
|
|
13
|
+
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
|
|
13
14
|
runs-on: ubuntu-latest
|
|
14
15
|
|
|
15
16
|
steps:
|
|
@@ -104,18 +105,6 @@ jobs:
|
|
|
104
105
|
echo "Verifying ZIP file integrity for Linux build with zipinfo..."
|
|
105
106
|
zipinfo ./build-linux.zip || (echo "ZIP file is corrupted: build-linux.zip" && exit 1)
|
|
106
107
|
|
|
107
|
-
- name: Setup Java
|
|
108
|
-
uses: actions/setup-java@v3
|
|
109
|
-
with:
|
|
110
|
-
distribution: 'adopt'
|
|
111
|
-
java-version: '11'
|
|
112
|
-
|
|
113
|
-
- name: Compile VerifyZip.java
|
|
114
|
-
run: javac test/VerifyZip.java
|
|
115
|
-
|
|
116
|
-
- name: Verify ZIP file integrity for Linux build with Java
|
|
117
|
-
run: java VerifyZip build-linux.zip
|
|
118
|
-
|
|
119
108
|
- name: Verify POSIX paths for Linux build
|
|
120
109
|
run: |
|
|
121
110
|
unzip build-linux.zip -d extracted-linux
|
|
@@ -133,6 +122,18 @@ jobs:
|
|
|
133
122
|
echo "All paths are POSIX compliant in build-linux.zip."
|
|
134
123
|
fi
|
|
135
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
|
+
|
|
136
137
|
- name: Download build-windows-2019.zip artifact
|
|
137
138
|
uses: actions/download-artifact@v4
|
|
138
139
|
with:
|
|
@@ -162,12 +163,6 @@ jobs:
|
|
|
162
163
|
echo "Verifying ZIP file integrity for Windows 2022 build with zipinfo..."
|
|
163
164
|
zipinfo ./build-windows-2022.zip || (echo "ZIP file is corrupted: build-windows-2022.zip" && exit 1)
|
|
164
165
|
|
|
165
|
-
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
166
|
-
run: java VerifyZip build-windows-2019.zip
|
|
167
|
-
|
|
168
|
-
- name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
169
|
-
run: java VerifyZip build-windows-2022.zip
|
|
170
|
-
|
|
171
166
|
- name: Verify POSIX paths for Windows 2019 build
|
|
172
167
|
run: |
|
|
173
168
|
unzip build-windows-2019.zip -d extracted-2019
|
|
@@ -201,3 +196,10 @@ jobs:
|
|
|
201
196
|
else
|
|
202
197
|
echo "All paths are POSIX compliant in build-windows-2022.zip."
|
|
203
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,21 @@
|
|
|
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.47](https://github.com/Cap-go/CLI/compare/v4.10.46...v4.10.47) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* do java last ([7374db6](https://github.com/Cap-go/CLI/commit/7374db68ac96dc4c0c8cd69452ad9485285f7d63))
|
|
11
|
+
|
|
12
|
+
### [4.10.46](https://github.com/Cap-go/CLI/compare/v4.10.45...v4.10.46) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* path javac ([e323cef](https://github.com/Cap-go/CLI/commit/e323cef1aa48ed164e1d503edc86ac6133abe0ca))
|
|
18
|
+
* remove double check ([5752085](https://github.com/Cap-go/CLI/commit/57520855f066cb3dc7ed78358b3e53628402c55d))
|
|
19
|
+
|
|
5
20
|
### [4.10.45](https://github.com/Cap-go/CLI/compare/v4.10.44...v4.10.45) (2024-06-21)
|
|
6
21
|
|
|
7
22
|
|
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.47",
|
|
112910
112910
|
description: "A CLI to upload to capgo servers",
|
|
112911
112911
|
author: "github.com/riderx",
|
|
112912
112912
|
license: "Apache 2.0",
|