initial commit of action

This commit is contained in:
Sebastian Rollen
2021-06-28 10:06:44 -04:00
commit 1b055e6e6a
355 changed files with 77131 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# Read TOML
A simple action to read a single field from a TOML file and output the value stored in that field.
## Inputs
## `file`
**Required** The TOML file to read from.
## `field`
**Required** The field inside the TOML file to read. Can possibly be a nested field, using the `parent.child` notation.
## Outputs
## `value`
The value stored inside `file` at key `field`.
## Example usage
uses: SebRollen/toml-action@v1.0.0
with:
file: 'myfile.toml'
field: 'package.version'