Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emilymclean/pkl-data-action
Generates final distributable data output from a specified Pkl file
https://github.com/emilymclean/pkl-data-action
github-actions pkl
Last synced: 16 days ago
JSON representation
Generates final distributable data output from a specified Pkl file
- Host: GitHub
- URL: https://github.com/emilymclean/pkl-data-action
- Owner: emilymclean
- License: mit
- Created: 2024-04-10T10:06:41.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-12-10T02:04:10.000Z (24 days ago)
- Last Synced: 2024-12-10T03:17:34.334Z (24 days ago)
- Topics: github-actions, pkl
- Language: Shell
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# pkl-data-action
Generates final distributable data output from a specified Pkl file.## Inputs
| Input | Required | Description | Default |
|-------------------- |---------- |------------------------------------------------------------------------------------------------------------------- |---------- |
| `input-file` | ✅ | The data Pkl file process | |
| `output-file` | ✅ | Where the resulting data will be written to. | |
| `format` | | The data format to use. Acceptable values are:
- json
- jsonnet
- pcf
- pcf
- plist
- properties
- textproto
- xml
- yaml
| `pkl-version` | | The pkl version to use | 0.27.1 |
## Example usage
```
uses: emilymclean/pkl-data-action@v2
with:
input-file: data.pkl
output-file: data.json
format: json
```