Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
if: ${{ steps.check-tag.outputs.release == 'true' }}
uses: ncipollo/release-action@v1.12.0
with:
artifacts: "artifacts/Linux/*.deb,artifacts/MacOS/*.pkg"
artifacts: "artifacts/Linux/*.deb,artifacts/MacOS/*.pkg,artifacts/Windows/*.exe"
tag: ${{ steps.check-tag.outputs.version }}


Expand Down
21 changes: 10 additions & 11 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ npm install -g @nowsecure/platform-cli
$ ns-cli COMMAND
running command...
$ ns-cli (--version)
@nowsecure/platform-cli/1.1.0 linux-x64 node-v20.16.0
@nowsecure/platform-cli/1.2.2 darwin-x64 node-v20.12.2
$ ns-cli --help [COMMAND]
USAGE
$ ns-cli COMMAND
Expand Down Expand Up @@ -86,7 +86,7 @@ DESCRIPTION
Commands to manipulate applications for analysis
```

_See code: [dist/commands/app/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.1.0/dist/commands/app/index.ts)_
_See code: [dist/commands/app/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.2.2/dist/commands/app/index.ts)_

## `ns-cli app archive [PLATFORM] [PACKAGENAME]`

Expand Down Expand Up @@ -505,7 +505,7 @@ DESCRIPTION
Commands to retrieve assessment data
```

_See code: [dist/commands/assessment/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.1.0/dist/commands/assessment/index.ts)_
_See code: [dist/commands/assessment/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.2.2/dist/commands/assessment/index.ts)_

## `ns-cli assessment cancel ASSESSMENT`

Expand Down Expand Up @@ -579,11 +579,10 @@ List assessments
```
USAGE
$ ns-cli assessment list [--token <value>] [--graphql <value>] [--rest <value>] [--ui <value>] [--profile <value>]
[--config-file <value>] [-m critical|c|high|h|medium|m|low|l|info|i --json ] [-w ] [-i <value> ] [-e <value> ]
[-a ] [-f ] [--config ] [-d ] [-b ] [--group-ref <value>] [-g <value>] [-r <value>] [--platform android|ios]
[--limit <value>] [--scope *] [--finding <value>] [--status cancelled|completed|failed|pending] [--since <value>]
[--after <value>] [--before <value>] [--until <value>] [--reverse] [-d] [--baseline] [--appstore] [--fail-fast]
[--favorite]
[--config-file <value>] [-m critical|c|high|h|medium|m|low|l|info|i --json] [-w ] [-i <value> ] [-e <value> ] [-a ]
[-f ] [--config ] [-d ] [-b ] [--group-ref <value>] [-g <value>] [-r <value>] [--platform android|ios] [--limit
<value>] [--scope *] [--finding <value>] [--status cancelled|completed|failed|pending] [--since <value>] [--after
<value>] [--before <value>] [--until <value>] [--reverse] [-d] [--baseline] [--appstore] [--fail-fast] [--favorite]

FLAGS
-a, --all-findings show all findings
Expand Down Expand Up @@ -835,7 +834,7 @@ FLAGS
--ui=<value> URL of the UI server
```

_See code: [dist/commands/configure/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.1.0/dist/commands/configure/index.ts)_
_See code: [dist/commands/configure/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.2.2/dist/commands/configure/index.ts)_

## `ns-cli help [COMMANDS]`

Expand Down Expand Up @@ -869,7 +868,7 @@ DESCRIPTION
Commands for the user's organization
```

_See code: [dist/commands/organization/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.1.0/dist/commands/organization/index.ts)_
_See code: [dist/commands/organization/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.2.2/dist/commands/organization/index.ts)_

## `ns-cli organization groups`

Expand Down Expand Up @@ -1266,7 +1265,7 @@ DESCRIPTION
Commands for users & accounts
```

_See code: [dist/commands/user/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.1.0/dist/commands/user/index.ts)_
_See code: [dist/commands/user/index.ts](https://github.com/nowsecure/nowsecure-cli/blob/v1.2.2/dist/commands/user/index.ts)_

## `ns-cli user account`

Expand Down
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nowsecure/platform-cli",
"version": "1.2.1",
"version": "1.2.2",
"description": "NowSecure command line tool to interact with NowSecure Platform",
"author": "NowSecure",
"bin": {
Expand Down Expand Up @@ -105,4 +105,4 @@
"oclif"
],
"types": "dist/index.d.ts"
}
}
2 changes: 1 addition & 1 deletion github-snapshot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nowsecure/github-snapshot",
"version": "1.2.1",
"version": "1.2.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nowsecure/platform-lib",
"description": "A library to interact with NowSecure Platform",
"version": "1.2.1",
"version": "1.2.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nowsecure/platform-lib-monorepo",
"version": "1.2.1",
"version": "1.2.2",
"license": "MIT",
"author": "NowSecure",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion sarif/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nowsecure/sarif",
"version": "1.2.1",
"version": "1.2.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
Expand Down