Skip to content

Commit

Permalink
Merge pull request #77 from marmelab/main
Browse files Browse the repository at this point in the history
Deploy V2.0.0 major version
  • Loading branch information
benoitchazoule committed Mar 15, 2024
2 parents 77feb55 + f199983 commit 896e8a5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
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

0 comments on commit 896e8a5

Please sign in to comment.