This GitHub Action edits the provided fields on a provided JSON file
Add this step in your workflow file
- name: Update my-file.json description
uses: restackio/update-json-file-action@2.1
with:
file: my-file.json
fields: "{'a.b.c': 'value_here', 'a.b.d[0]': 'value_here'}"
file
: File name/path to edit. e.gpackage.json
fields
: Fields to edit. can be nested fields. example:{'a.b.c[0]': 'value_here', 'z.x': 'value_here'}
name: Build and Release
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
GITHUB_TOKEN: ${{ github.token }}
jobs:
build:
name: Build and Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Update package.json version
uses: restackio/update-json-file-action@2.1
with:
file: package.json
fields: "{\"input.test.type\": \"new value\"}"