Skip to content

Commit

Permalink
Fix workflows/bundle and make
Browse files Browse the repository at this point in the history
  • Loading branch information
doizuc committed Nov 27, 2023
1 parent 684cbb7 commit 85bfa2e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,8 @@ jobs:
echo "Release: ${{ steps.system-info.outputs.release }}"
echo "Total memory bytes: ${{ steps.system-info.outputs.totalmem }}"
- name: Extract Branch Name
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.extract_branch.outputs.branch }}

- name: Setup python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

# Bundle application
PyInstaller.__main__.run([
f'--name=Inlinino-v{version}-{platform.system()}' % version,
f'--name=Inlinino-v{version}-{platform.system()}',
'--icon=%s' % os.path.join('inlinino', 'resources', f'inlinino.{icon_ext}'),
f'--distpath={os.path.join(root, "dist")}',
f'--workpath={os.path.join(root, "build")}',
Expand Down

0 comments on commit 85bfa2e

Please sign in to comment.