Skip to content

Commit

Permalink
propagate sudo insall to other locations
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Feb 3, 2024
1 parent bc624e9 commit 2bf4da0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
path: getargv
token: ${{ secrets.GH_PAT }}
- name: Build libgetargv
run: "make dylib"
run: make dylib
working-directory: getargv
- name: Install libgetargv
run: "sudo make install_dylib"
run: sudo make install_dylib
working-directory: getargv
- uses: actions/checkout@v4
with:
Expand All @@ -57,7 +57,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:
Expand Down Expand Up @@ -108,7 +111,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:
Expand Down

0 comments on commit 2bf4da0

Please sign in to comment.