Skip to content

update action to run all scripts on update #17

update action to run all scripts on update

update action to run all scripts on update #17

Workflow file for this run

name: Update JSONLD
on:
push:
branches:
- '*'
# - main # Adjust this to your branch name if different
jobs:
update-jsonld:
runs-on: ubuntu-latest # Specify the machine type
steps:
- name: Get a list of directories with updated files
id: install-cmipld
uses: WCRP-CMIP/CMIP-LD/actions/cmipld@main
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get a list of directories with updated files
id: updated-dirs
uses: WCRP-CMIP/CMIP-LD/actions/updated-dirs@main
- name: Compile JSONLD files, generate an RDF network and update frames
id: jsonld
uses: WCRP-CMIP/CMIP-LD/actions/jsonld@main
with:
dirs: ${{ env.updated_dirs }}
frames: "$PWD/compiled/graph_data.json"
- name: Run Update Scripts
if: ${{ env.updated_dirs }}
id: run-all-files
uses: WCRP-CMIP/CMIP-LD/actions/run-all-files@main
with:
directory: "$PWD/JSONLD/scripts"
script: python
script_ext: .py