name: json2file
description: Generate file output from JSON
author: jackton1
inputs:
directory:
description: "Directory to write to"
required: true
default: ".github/outputs"
outputs:
description: "JSON string"
required: true
keys:
description: "List of Keys to read from the `outputs` JSON string"
required: true
skip_missing_keys:
description: "Skip missing keys not found in the `outputs` JSON string"
required: false
default: "false"
extension:
description: "File extension to use, possible values: txt, json"
required: false
default: "txt"
bin_path:
description: "Path to the binary"
required: false
runs:
using: 'composite'
steps:
- name: Setup bin
uses: tj-actions/setup-bin@v1
id: setup-bin-rust
with:
repository-owner: tj-actions
repository: json2file
version: v1.7.2
language-type: 'rust'
- run: |
bash $GITHUB_ACTION_PATH/entrypoint.sh
id: json2file
shell: bash
env:
INPUT_DIRECTORY: ${{ inputs.directory }}
INPUT_OUTPUTS: ${{ inputs.outputs }}
INPUT_KEYS: ${{ inputs.keys }}
INPUT_SKIP_MISSING_KEYS: ${{ inputs.skip_missing_keys }}
INPUT_EXTENSION: ${{ inputs.extension }}
INPUT_BIN_PATH: ${{ inputs.bin_path || steps.setup-bin-rust.outputs.binary_path }}
branding:
icon: file-text
color: white