Skip to content

Commit 125f7a5

Browse files
committed
Allow configuring container tag and update to latest
1 parent 144b6ab commit 125f7a5

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ The underlying container used is maintained at
1010
[auth0-deploy-cli-container](https://github.com/abn/auth0-deploy-cli-container).
1111

1212
### Parameters
13-
| Argument | Description |
14-
|------------|-------------|
15-
| domain | Full domain for the tenant you are configuring. (eg: `tenant.eu.auth0.com`) |
16-
| id | Auth0 Client ID |
17-
| secret | Auth0 Client Secret |
13+
| Argument | Description |
14+
|-------------|-----------------------------------------------------------------------------|
15+
| domain | Full domain for the tenant you are configuring. (eg: `tenant.eu.auth0.com`) |
16+
| id | Auth0 Client ID |
17+
| secret | Auth0 Client Secret |
18+
| cli-version | Auth0 Deploy CLI Version (defaults to `latest`) |
1819

1920
### Usage
2021
An example configuration deploying tenant configuration from the project where this

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ inputs:
1515
secret:
1616
description: Auth0 Client Secret
1717
required: true
18+
cli-version:
19+
description: Auth0 Deploy CLI Version
20+
default: "latest"
1821
runs:
1922
using: docker
20-
image: docker://quay.io/abn/auth0-deploy-cli:v3.6.0
23+
image: docker://quay.io/abn/auth0-deploy-cli:${{ inputs.cli-version }}
2124
env:
2225
AUTH0_DOMAIN: ${{ inputs.domain }}
2326
AUTH0_CLIENT_ID: ${{ inputs.id }}

0 commit comments

Comments
 (0)