aboutsummaryrefslogtreecommitdiff
path: root/action.yml
diff options
context:
space:
mode:
Diffstat (limited to 'action.yml')
-rw-r--r--action.yml26
1 files changed, 15 insertions, 11 deletions
diff --git a/action.yml b/action.yml
index 027a0e6..ae2049a 100644
--- a/action.yml
+++ b/action.yml
@@ -27,18 +27,22 @@ runs:
with:
node-version: "20.x"
- - name: print files
- run: ls -la
+ - name: Install graphdata generator dependencies
+ working-directory: action
+ run: npm install
shell: bash
- # - name: Install dependencies
- # run: npm install
- # shell: bash
+ - name: Generate graphdata.json
+ working-directory: action
+ run: npm run generate --script_params=../orgs/org-roam.db
+ shell: bash
- # - name: Generate graphdata.json
- # run: npm run generate --script_params=./orgs/org-roam.db
- # shell: bash
+ - name: Create Notes
+ working-directory: action
+ run: ./create_notes.sh
+ shell: bash
- # - name: print graphdata.json
- # run: cat graphdata.json
- # shell: bash
+ - name: print files
+ run: ls -la
+ working-directory: action
+ shell: bash