commit 3375322ce9be22274727e5bed1e2570fddf7928b parent 82bd7520f9d1b1fa392c455e5653ebb024a3599c Author: finwo <finwo@pm.me> Date: Sat, 28 Jan 2023 17:13:45 +0100 Copy dist/dep from the correct path in action.yml Diffstat:
| M | action.yml | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/action.yml b/action.yml @@ -4,7 +4,7 @@ description: Installs the DEP package manager into the runner runs: using: "composite" steps: - - run: cp dist/dep /usr/local/bin/dep + - run: cp ${{ github.action_path }}/dist/dep /usr/local/bin/dep shell: bash - run: chmod +x /usr/local/bin/dep shell: bash