From 307f6bd592d18a340067ea433c8816ea6b398094 Mon Sep 17 00:00:00 2001 From: ikoamu Date: Wed, 24 Jan 2024 21:46:55 +0900 Subject: Update action.yml file paths --- action.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'action.yml') diff --git a/action.yml b/action.yml index 0b8ea7a..2305fa3 100644 --- a/action.yml +++ b/action.yml @@ -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 -- cgit