Skip to content

Commit

Permalink
troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
togrupe committed May 12, 2024
1 parent f2d47fd commit 8506aae
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,31 +51,31 @@ jobs:
- name: Install Dependencies for All
run: |
pip install -r dependencies.txt
#
# - name: Build Executable for ${{runner.os}}
# uses: Nuitka/[email protected]
# with:
# nuitka-version: 1.8.5
# script-name: src/Main.py
# # company-name: CONGO*blue (forked from zak-45)
# file-version: ${{github.event.inputs.mytag}}
# # windows-icon-from-ico: assets/BPM2OSC.ico
# # macos-app-icon: assets/BPM2OSC.ico
# onefile: true
# onefile-tempdir-spec: ./dmt
# output-file: dmt-${inputs.mytag}-${{runner.os}}
- name: Build Executable for ${{runner.os}}
uses: Nuitka/[email protected]
with:
nuitka-version: 1.8.5
script-name: src/Main.py
# company-name: CONGO*blue (forked from zak-45)
file-version: ${{github.event.inputs.mytag}}
# windows-icon-from-ico: assets/BPM2OSC.ico
# macos-app-icon: assets/BPM2OSC.ico
onefile: true
onefile-tempdir-spec: ./dmt
output-file: dmt-${{github.event.inputs.mytag}}-${{runner.os}}
#
# - name: Upload Artifacts
# uses: actions/upload-artifact@v4
# with:
# name: ${{runner.os}} Build
# if-no-files-found: warn
# path: 'build/dmt-${{runner.os}}**'
# path: 'build/dmt-${{github.event.inputs.mytag}}-${{runner.os}}**'
#
# - name: Create Release ${{github.event.inputs.mytag}} with Builds from Nuitka
# uses: ncipollo/release-action@v1
# with:
# allowUpdates: true
# commit: main
# tag: ${{github.event.inputs.mytag}}
# artifacts: 'build/dmt-${{runner.os}}**'
# artifacts: 'build/dmt-${{github.event.inputs.mytag}}-${{runner.os}}**'

0 comments on commit 8506aae

Please sign in to comment.