Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy V2.0.0 major version #77

Merged
merged 8 commits into from
Mar 15, 2024
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -49,7 +49,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -70,7 +70,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand All @@ -91,7 +91,7 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
Expand Down Expand Up @@ -120,12 +120,12 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false
useLockFile: true

- name: ⚙️ Build
run: make build
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ DESCRIPTION
Create an analysis on GreenFrame server.
```

_See code: [dist/commands/analyze.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/analyze.ts)_
_See code: [dist/commands/analyze.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/analyze.ts)_

## `greenframe kube-config`

Expand All @@ -292,7 +292,7 @@ DESCRIPTION
greenframe kube-config
```

_See code: [dist/commands/kube-config.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/kube-config.ts)_
_See code: [dist/commands/kube-config.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/kube-config.ts)_

## `greenframe open [BASEURL] [SCENARIO]`

Expand All @@ -319,7 +319,7 @@ DESCRIPTION
greenframe analyze ./yourScenario.js https://greenframe.io
```

_See code: [dist/commands/open.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/open.ts)_
_See code: [dist/commands/open.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/open.ts)_

## `greenframe update [CHANNEL]`

Expand All @@ -338,7 +338,7 @@ DESCRIPTION
greenframe update
```

_See code: [dist/commands/update.ts](https://github.com/marmelab/greenframe-cli/blob/v1.7.0/dist/commands/update.ts)_
_See code: [dist/commands/update.ts](https://github.com/marmelab/greenframe-cli/blob/v2.0.0/dist/commands/update.ts)_
<!-- commandsstop -->

## Development
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "greenframe-cli",
"description": "Official GreenFrame CLI",
"version": "1.7.0",
"version": "2.0.0",
"author": "Marmelab",
"bin": {
"greenframe": "./bin/run"
Expand All @@ -25,6 +25,9 @@
"oclif": "^2.4.3",
"playwright": "1.30.0"
},
"resolutions": {
"oclif/**/isbinaryfile": "5.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.36.0",
"@babel/core": "^7.15.8",
Expand Down Expand Up @@ -63,7 +66,7 @@
"xo": "^0.52.3"
},
"engines": {
"node": ">=14.0.0"
"node": ">=18.0.0"
},
"files": [
"/bin",
Expand Down
Loading