You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by ke...@apache.org on 2023/02/24 09:58:11 UTC

[skywalking-eyes] branch main updated: Fix GitHub Actions wrong path (#151)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git


The following commit(s) were added to refs/heads/main by this push:
     new de4e45e  Fix GitHub Actions wrong path (#151)
de4e45e is described below

commit de4e45ee53c8fc9ab5f85d71fe19194826c55098
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Fri Feb 24 17:58:06 2023 +0800

    Fix GitHub Actions wrong path (#151)
---
 dependency/action.yml | 2 +-
 header/action.yml     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dependency/action.yml b/dependency/action.yml
index 0b91f28..a201420 100644
--- a/dependency/action.yml
+++ b/dependency/action.yml
@@ -67,7 +67,7 @@ runs:
         key: license-eye-${{ runner.os }}-go-${{ hashFiles(format('{0}/{1}', github.action_path, 'go.sum')) }}
         restore-keys: license-eye-${{ runner.os }}-go-
     - shell: bash
-      run: make -C $GITHUB_ACTION_PATH install
+      run: make -C $GITHUB_ACTION_PATH/.. install
     - shell: bash
       env:
         GITHUB_TOKEN: ${{ inputs.token }}
diff --git a/header/action.yml b/header/action.yml
index faa0874..08b9153 100644
--- a/header/action.yml
+++ b/header/action.yml
@@ -73,7 +73,7 @@ runs:
         key: license-eye-${{ runner.os }}-go-${{ hashFiles(format('{0}/{1}', github.action_path, 'go.sum')) }}
         restore-keys: license-eye-${{ runner.os }}-go-
     - shell: bash
-      run: make -C $GITHUB_ACTION_PATH install
+      run: make -C $GITHUB_ACTION_PATH/.. install
     - shell: bash
       env:
         GITHUB_TOKEN: ${{ inputs.token }}