@capgo/cli 4.0.3 → 4.0.6
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/build.yml +4 -0
- package/CHANGELOG.md +21 -0
- package/dist/index.js +4 -3
- package/package.json +4 -3
|
@@ -9,6 +9,9 @@ jobs:
|
|
|
9
9
|
deploy:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
name: "Build code and release"
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
id-token: write
|
|
12
15
|
steps:
|
|
13
16
|
- name: Checkout
|
|
14
17
|
uses: actions/checkout@v4
|
|
@@ -34,6 +37,7 @@ jobs:
|
|
|
34
37
|
if: ${{ !contains(github.ref, '-alpha.') }}
|
|
35
38
|
with:
|
|
36
39
|
token: ${{ secrets.NPM_TOKEN }}
|
|
40
|
+
provenance: true
|
|
37
41
|
- uses: JS-DevTools/npm-publish@v3
|
|
38
42
|
if: ${{ contains(github.ref, '-alpha.') }}
|
|
39
43
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.0.6](https://github.com/Cap-go/CLI/compare/v4.0.5...v4.0.6) (2024-02-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* provenance ([12c8e62](https://github.com/Cap-go/CLI/commit/12c8e62634f49304712fc398717ef21b125a60d1))
|
|
11
|
+
|
|
12
|
+
### [4.0.5](https://github.com/Cap-go/capgo-cli/compare/v4.0.4...v4.0.5) (2024-02-18)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* add missing flag ([b4356a2](https://github.com/Cap-go/capgo-cli/commit/b4356a28c466d1745238bc8b240300ad73655c07))
|
|
18
|
+
|
|
19
|
+
### [4.0.4](https://github.com/Cap-go/capgo-cli/compare/v4.0.3...v4.0.4) (2024-02-18)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* add provenance ([bdbe14f](https://github.com/Cap-go/capgo-cli/commit/bdbe14f78ba59bcda9b6ee6c35f8bc6e56103463))
|
|
25
|
+
|
|
5
26
|
### [4.0.3](https://github.com/Cap-go/capgo-cli/compare/v4.0.2...v4.0.3) (2024-02-18)
|
|
6
27
|
|
|
7
28
|
|
package/dist/index.js
CHANGED
|
@@ -61661,7 +61661,7 @@ var import_get_latest_version = __toESM(require_src3());
|
|
|
61661
61661
|
// package.json
|
|
61662
61662
|
var package_default = {
|
|
61663
61663
|
name: "@capgo/cli",
|
|
61664
|
-
version: "4.0.
|
|
61664
|
+
version: "4.0.6",
|
|
61665
61665
|
description: "A CLI to upload to capgo servers",
|
|
61666
61666
|
main: "dist/index.js",
|
|
61667
61667
|
bin: {
|
|
@@ -61669,11 +61669,12 @@ var package_default = {
|
|
|
61669
61669
|
},
|
|
61670
61670
|
repository: {
|
|
61671
61671
|
type: "git",
|
|
61672
|
-
url: "git+https://github.com/Cap-go/
|
|
61672
|
+
url: "git+https://github.com/Cap-go/CLI.git"
|
|
61673
61673
|
},
|
|
61674
61674
|
bugs: {
|
|
61675
|
-
url: "https://github.com/Cap-go/
|
|
61675
|
+
url: "https://github.com/Cap-go/CLI/issues"
|
|
61676
61676
|
},
|
|
61677
|
+
homepage: "https://github.com/Cap-go/CLIl#readme",
|
|
61677
61678
|
engines: {
|
|
61678
61679
|
npm: ">=8.0.0",
|
|
61679
61680
|
node: ">=20.0.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"description": "A CLI to upload to capgo servers",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/Cap-go/
|
|
11
|
+
"url": "git+https://github.com/Cap-go/CLI.git"
|
|
12
12
|
},
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/Cap-go/
|
|
14
|
+
"url": "https://github.com/Cap-go/CLI/issues"
|
|
15
15
|
},
|
|
16
|
+
"homepage": "https://github.com/Cap-go/CLIl#readme",
|
|
16
17
|
"engines": {
|
|
17
18
|
"npm": ">=8.0.0",
|
|
18
19
|
"node": ">=20.0.0"
|