GitHub Action
JSON to variables
v1.2.0
Latest version
This action reads json file and writes its content as environment variables.
Required The JSON file.
The prefix (optional). Default value is empty string.
{
"value": "value",
"array": [
{
"value": "value 0"
},
"value 1"
],
"obj": {
"value1": "value1",
"value2": "value2"
}
}
- name: JSON to variables
uses: antifree/[email protected] # x-release-please-version
with:
filename: 'test.json'
prefix: 'test'
- name: Show output
run: echo "The time was ${{ env.test_value }}, ${{ env.test_array_0_value }}, ${{ env.test_obj_value1 }}"