Skip to content

Commit

Permalink
Merge pull request #93 from akamai/develop
Browse files Browse the repository at this point in the history
Release CLI version 1.4.0
  • Loading branch information
herzykj committed Apr 22, 2021
2 parents e794d0e + 619feda commit 11aa370
Show file tree
Hide file tree
Showing 9 changed files with 3,620 additions and 2,710 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,25 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
node-version: [10.x, 12.x, 14.x, 15.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- run: |
grep resolved package-lock.json > result.txt
if grep -q akamai result.txt; then echo "package-lock.json contains invalid entries" ; exit 1; fi
shell: bash --noprofile --norc -x {0}
name: Validate package-lock.json file
- uses: actions/setup-node@v1
name: Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present

- run: touch /tmp/test-edgerc
- run: ./akamai-sandbox --edgerc /tmp/test-edgerc help
name: Run sandbox command
env:
AKAMAI_CLI_CACHE_PATH: /tmp
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ The Sandbox command line interface (CLI) expedites the process of creating an is
To use this tool you need:
* [Akamai CLI](https://github.com/akamai/cli) installed. If you have a Mac with brew installed, run this command: `brew install akamai`.
* An API client that contains both the Sandbox and Property Manager APIs with read-write access. Follow the steps in [Get Started with APIs](https://developer.akamai.com/api/getting-started) to learn how to configure credentials to access the API.
* Node version 8+
* Java version 8+
* Node versions supported: any active LTS, maintenance LTS and current version (according to [nodejs schedule](https://nodejs.org/en/about/releases/)), currently: 10.x, 12.x, 14.x and 15.x
* Java version 8

## Quick Start

Expand Down
2 changes: 1 addition & 1 deletion cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"commands": [
{
"name": "sandbox",
"version": "1.3.0",
"version": "1.4.0",
"description": "Manage Akamai Sandbox environments.",
"bin": "https://github.com/akamai/cli-sandbox/releases/download/{{.Version}}/akamai-{{.Name}}-{{.Version}}-{{.OS}}-{{.Arch}}{{.BinSuffix}}"
}
Expand Down

0 comments on commit 11aa370

Please sign in to comment.