Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.26 KB

Setup Yampl Action

This action installs clevyr/yampl.

See the yampl readme for more details on yampl templating capabilities.

Usage

Inputs

Name Description Required Default
version The Yampl version to install false latest
repo The Yampl repo to use false clevyr/yampl
token GitHub Token false ${{ github.token }}

Outputs

Name Description
version The Yampl version that was installed

Example Workflow

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

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 }}