Skip to content

Commit

Permalink
Update makefile.yml
Browse files Browse the repository at this point in the history
it should produce artifacts now
  • Loading branch information
schooldanlp6 authored Dec 19, 2024
1 parent c688356 commit 92b7783
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,20 @@ jobs:
- uses: actions/checkout@v4

- name: Install make
run: sudo apt install make
- name: Install dependencies
run: sudo apt install -y make

- name: Install dependencies (build)
run: make

- name: Install to local directory
run: |
make PREFIX=$(pwd)/install install
# Run 'make install' with a custom DESTDIR to install to a local directory
make DESTDIR=$(pwd)/install install
- name: Upload build artifacts
if: success()
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: ./install/bin

0 comments on commit 92b7783

Please sign in to comment.