Skip to content

Create Ovation P-56FC (7Ch).json #6

Create Ovation P-56FC (7Ch).json

Create Ovation P-56FC (7Ch).json #6

Workflow file for this run

name: Combine all *.json files
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: checkout Repo
uses: actions/checkout@v4
- name: combine
run: |
find . -name "*.json" -exec cat {} + | jq -s '.' > combine.json
- name: push to repo
run: |
git config --global user.name 'Github-Workflow'
git config --global user.email '[email protected]'
git add combine.json
git commit -am "combine all json-files"
git push