Skip to content

Commit

Permalink
fix for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownpersonog committed Jul 17, 2024
1 parent cc7d5ea commit 5b2f83b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
tag_name: ${{ steps.tag.outputs.release_tag }}
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -60,7 +61,7 @@ jobs:
**General Overview:**
- 🛠️ Enhancements to improve performance and stability.
**Note:** This build includes both Linux and Windows executables.
- name: Upload Linux Release Asset
uses: actions/upload-release-asset@v1
env:
Expand Down Expand Up @@ -96,7 +97,7 @@ jobs:
- name: Replace version placeholder
run: |
(Get-Content -path main.py) -replace '__VERSION__', '${{ needs.build-and-release-linux.outputs.tag_name }}' | Set-Content -path main.py
(Get-Content -Path main.py -Raw) -replace '__VERSION__', '${{ needs.build-and-release-linux.outputs.tag_name }}' | Set-Content -Path main.py
- name: Build with Nuitka
run: |
Expand Down

0 comments on commit 5b2f83b

Please sign in to comment.