mirror of
https://hub.psychoinformatics.de/actions/xlsx-to-tsv.git
synced 2026-09-10 11:56:03 +00:00
25 lines
626 B
Markdown
25 lines
626 B
Markdown
# XLSX to TSV Action
|
|
|
|
An action for converting a sheet from a `.xlsx` workbook into a `.tsv`. It assumes `uv` is available and runs the converter with `uv run`.
|
|
|
|
## Usage
|
|
|
|
```yaml
|
|
- name: Convert XLSX to TSV
|
|
uses: https://hub.psychoinformatics.de/actions/xlsx-to-tsv@v1
|
|
with:
|
|
input: data/input.xlsx
|
|
output: data/output.tsv
|
|
```
|
|
|
|
## Inputs
|
|
|
|
| Name | Required | Description |
|
|
| --- | --- | --- |
|
|
| `input` | yes | Path to the source `.xlsx` file |
|
|
| `output` | yes | Path to the output `.tsv` file |
|
|
| `sheet` | no | Optional sheet selection (zero-based index or name), active worksheet is default |
|
|
|
|
## License
|
|
|
|
MIT
|