diff options
Diffstat (limited to 'action.yml')
-rw-r--r-- | action.yml | 26 |
1 files changed, 15 insertions, 11 deletions
@@ -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 |