Skip to content

Commit

Permalink
actions: Add binary folder to artifacts
Browse files Browse the repository at this point in the history
* update to use NXDK new build system

* add binary folder without need extract iso
  • Loading branch information
RadWolfie authored Feb 20, 2022
1 parent be7f4c5 commit 54b04d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y flex bison clang lld llvm clang-format
echo "${PWD}/nxdk/bin" >> $GITHUB_PATH
- name: Check for new format errors
run: |
find . | grep -E '.*\.(c|cpp|h|hpp)$' | grep -Ev '(3rdparty|nxdk)/' | xargs clang-format --dry-run -Werror
- name: Build
env:
NXDK_DIR: nxdk
run: |
eval $(./nxdk/bin/activate -s)
make -j$(nproc)
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: NevolutionX
path: '*.iso'
path: |
*.iso
bin
if-no-files-found: error

0 comments on commit 54b04d0

Please sign in to comment.