diff options
author | ikoamu <ikoamu@gmail.com> | 2024-01-24 21:46:55 +0900 |
---|---|---|
committer | ikoamu <ikoamu@gmail.com> | 2024-01-24 21:46:55 +0900 |
commit | 307f6bd592d18a340067ea433c8816ea6b398094 (patch) | |
tree | 137eba43a9cb00180746de30e15483fa8fb6b92d | |
parent | 55a165ff790d5aa3cadfa4be642931563f34b1c5 (diff) |
Update action.yml file paths
-rw-r--r-- | action.yml | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -6,14 +6,14 @@ runs: - name: Checkout this repo uses: actions/checkout@v4 with: - repository: ${{ github.action_repository }} - path: "action" + repository: ikoamu/org-roam-hosing + path: action - name: "Checkout org file repo" uses: actions/checkout@v4 with: repository: ${{ github.repository }} - path: "orgs" + path: orgs - name: Checkout org-roam-ui uses: actions/checkout@v4 @@ -28,7 +28,7 @@ runs: node-version: "20.x" - name: Install graphdata generator dependencies - working-directory: ./action + working-directory: action run: npm install shell: bash @@ -38,21 +38,21 @@ runs: shell: bash - name: Generate graphdata.json - working-directory: ./action + working-directory: action run: cat package.json shell: bash - name: Generate graphdata.json - working-directory: ./action + working-directory: action run: npm run generate --script_params=../orgs/org-roam.db shell: bash - name: Create Notes - working-directory: ./action + working-directory: action run: ./create_notes.sh shell: bash - name: print files run: ls -la - working-directory: ./action + working-directory: action shell: bash |