Skip to content

Commit

Permalink
Allow configuring container tag and update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Nov 18, 2024
1 parent 144b6ab commit 125f7a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ The underlying container used is maintained at
[auth0-deploy-cli-container](https://github.com/abn/auth0-deploy-cli-container).

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

### Usage
An example configuration deploying tenant configuration from the project where this
Expand Down
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ inputs:
secret:
description: Auth0 Client Secret
required: true
cli-version:
description: Auth0 Deploy CLI Version
default: "latest"
runs:
using: docker
image: docker://quay.io/abn/auth0-deploy-cli:v3.6.0
image: docker://quay.io/abn/auth0-deploy-cli:${{ inputs.cli-version }}
env:
AUTH0_DOMAIN: ${{ inputs.domain }}
AUTH0_CLIENT_ID: ${{ inputs.id }}
Expand Down

0 comments on commit 125f7a5

Please sign in to comment.