Skip to content

Update metadata.json #175

Update metadata.json

Update metadata.json #175

Workflow file for this run

name: Concatenate JSON Files
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install jsonfile
- name: Concatenate JSON files
run: node concatenate.js
- name: Commit and push changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add manifest.json
git commit -m "Update manifest.json" || true
git push