Skip to content

Commit

Permalink
📝 Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 6, 2023
1 parent a20332f commit 5729adc
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# setup-yampl-action

This action installs [yampl](https://github.com/clevyr/yampl).

See the [yampl](https://github.com/clevyr/yampl#readme) readme for more details on yampl templating capabilities.

# Usage

## Inputs

- `version` - The version of yampl to install.
- `token` - GitHub token.

## Outputs

- `version` - The version of yampl that was installed.

## Example Workflow

Here is an example that fetches a separate deployment repo and patches its configuration.

```yaml
name: Patch Configuration

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: clevyr/setup-yampl-action@v1
- run: yampl config.yaml --value sha=${{ github.sha }}
```

0 comments on commit 5729adc

Please sign in to comment.