From bc624e9c312181456fdf2221d193d01ce639aef8 Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Fri, 2 Feb 2024 18:23:27 -0600 Subject: [PATCH] try to handle perms for install on non-homebrew prefix --- .github/workflows/actions.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 4cca564..9aa8f83 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -27,7 +27,10 @@ jobs: path: getargv token: ${{ secrets.GH_PAT }} - name: Build libgetargv - run: make install_dylib + run: "make dylib" + working-directory: getargv + - name: Install libgetargv + run: "sudo make install_dylib" working-directory: getargv - uses: actions/checkout@v4 with: