-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (58 loc) · 1.76 KB
/
update-jsonld.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Update JSONLD
on:
push:
# branches:
# - '*'
# - main # Adjust this to your branch name if different
branches-ignore:
- production
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
with:
filter_dir: "data_descriptors"
- name: Group JSONLD files
id: group-jsonld
uses: WCRP-CMIP/CMIP-LD/actions/process_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
# - name: generate CV
# if: ${{ env.updated_dirs }}
# id: generate_cv
# run: |
# if [[ "${{env.updated_dirs}}" == *"JSONLD"* ]]; then
# gencv && git push origin HEAD
# fi
- name: Commit All
uses: WCRP-CMIP/CMIP-LD/actions/commit-all@main
with:
message: "Automated Content Update"
- name: Push Changes
run: |
git push
- name: Publish
uses: WCRP-CMIP/CMIP-LD/actions/publish2pages@main
with:
api_key: ${{ secrets.API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
branch_name: ${{ github.ref_name }}