Skip to content

Commit

Permalink
feat: nuitka
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeshi committed Nov 12, 2023
1 parent 8e4420d commit 0b1bfda
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/build-binary-nuitka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ jobs:
poetry run python -m nuitka --standalone --onefile --follow-imports -o ntfsdump.exe --output-dir=dist --assume-yes-for-downloads src/ntfsdump/views/NtfsDumpView.py
- name: verify
run: dist/ntfsdump.exe -h
run: |
dist/ntfsdump.exe -h
dist/ntfsdump.exe --version
# - name: upload
# uses: softprops/action-gh-release@v1
# with:
# files: dist/ntfsdump.exe
- name: upload
uses: actions/upload-artifact@v3
with:
files: dist/ntfsdump.exe

build-linux:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -92,4 +94,11 @@ jobs:
poetry run python -m nuitka --standalone --onefile --follow-imports -o ntfsdump --output-dir=dist --assume-yes-for-downloads src/ntfsdump/views/NtfsDumpView.py
- name: verify
run: dist/ntfsdump -h
run: |
dist/ntfsdump -h
dist/ntfsdump --version
- name: upload
uses: actions/upload-artifact@v3
with:
files: dist/ntfsdump

0 comments on commit 0b1bfda

Please sign in to comment.