Skip to content

chore: Deprecate input.value in favor of input.vars #61

chore: Deprecate input.value in favor of input.vars

chore: Deprecate input.value in favor of input.vars #61

Workflow file for this run

name: Test
on: push
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: ./
with:
file: |
test/input.yaml
test/input2.yaml
test/*_input.yaml
vars: |
hello=world
tag=latest
- name: Deprecated values input
uses: ./
with:
file: |
test/input.yaml
test/input2.yaml
test/*_input.yaml
values: |
hello=world
tag=latest
- run: diff test/input.yaml test/expected.yaml
- run: diff test/input2.yaml test/expected2.yaml
- run: diff test/glob_input.yaml test/glob_expected.yaml