mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-06-13 09:20:50 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8747e0b5cf | ||
|
|
34490be6e7 | ||
|
|
9fc5df9b9d |
@@ -12,7 +12,7 @@ Every argument is optional.
|
|||||||
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `github-token` | PAT (Personal Access Token) for authorizing the repository.<br>_Defaults to **\${{ github.token }}**_ |
|
| `github-token` | PAT (Personal Access Token) for authorizing the repository.<br>_Defaults to **\${{ github.token }}**_ |
|
||||||
| `kustomize-version` | Semver of kustomize to use. Examples: `10.x`, `10.15.1`, `>=10.15.0`<br>_Defaults to **\***_ |
|
| `kustomize-version` | Semver of kustomize to use. Examples: `10.x`, `10.15.1`, `>=10.15.0`<br>_Defaults to **\***_ |
|
||||||
| `fail-fast` | When github rate limits us, fail immediately or retry after the timeout that github wishes from us? <br>Note: When this is set to `false`, a github workflow might accrue a long (and possibly expensive) runtime.<br>_Defaults to **true**_ |
|
| `fail-fast` | When github rate limits us, fail immediately or retry after the timeout that github wishes from us? Note: When setting this to `false` (which is the default!), a github workflow might accrue a long (and possibly expensive) runtime. |
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ const tempDir = path.join(__dirname, 'runner', 'temp')
|
|||||||
|
|
||||||
process.env['RUNNER_TOOL_CACHE'] = toolDir
|
process.env['RUNNER_TOOL_CACHE'] = toolDir
|
||||||
process.env['RUNNER_TEMP'] = tempDir
|
process.env['RUNNER_TEMP'] = tempDir
|
||||||
process.env['INPUT_FAIL-FAST'] = 'true'
|
process.env['INPUT_FAIL-FAST'] = 'false'
|
||||||
|
|
||||||
import * as installer from '../src/installer'
|
import * as installer from '../src/installer'
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ inputs:
|
|||||||
fail-fast:
|
fail-fast:
|
||||||
description: 'Fail quickly on github rate limit. "false" or "true".'
|
description: 'Fail quickly on github rate limit. "false" or "true".'
|
||||||
required: false
|
required: false
|
||||||
default: 'true'
|
default: 'false'
|
||||||
runs:
|
runs:
|
||||||
using: 'node16'
|
using: 'node16'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "setup-kustomize",
|
"name": "setup-kustomize",
|
||||||
"version": "2.0.0",
|
"version": "1.7.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Github action to setup-kustomize",
|
"description": "Github action to setup-kustomize",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user