Skip to content

Commit

Permalink
Update compile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NotJINXZ committed Dec 30, 2023
1 parent a82dd85 commit 2ae5e08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:

- name: Compile Python Script
run: |
python -m nuitka --standalone ./uwt.py
python -m nuitka --standalone --onefile ./uwt.py
- name: Calculate SHA256 Checksum
run: |
sha256sum ./uwt.dist/uwt > ./uwt.dist/uwt.sha256
sha256sum ./uwt.dist/uwt.exe > ./uwt.dist/uwt.sha256
- name: Create Release
id: create_release
Expand All @@ -49,7 +49,7 @@ jobs:
- GPG Signature:
```bash
gpg --verify ./uwt.dist/uwt
gpg --verify ./uwt.dist/uwt.exe
```
- SHA256 Checksum:
```bash
Expand All @@ -61,7 +61,7 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./uwt.dist/uwt
asset_path: ./uwt.dist/uwt.exe
asset_name: uwt
asset_content_type: application/octet-stream

Expand Down

0 comments on commit 2ae5e08

Please sign in to comment.