Skip to content

Commit

Permalink
🐛 修复acthion错误
Browse files Browse the repository at this point in the history
  • Loading branch information
wling-art committed Feb 9, 2024
1 parent d741754 commit 34fce9d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ jobs:
- name: Build
run: |
if [ "${{ runner.os }}" == 'Windows' ]; then
poetry run pyinstaller -F main.py -n ToolDelta.exe -i logo.png
else
poetry run pyinstaller -F main.py -n ToolDelta -i logo.png
fi
if ${{ runner.os }} == 'Windows'
then
poetry run pyinstaller -F main.py -n ToolDelta.exe -i logo.png
else
poetry run pyinstaller -F main.py -n ToolDelta -i logo.png
fi
- name: Get version
run: echo "VERSION=$(<version)" >> $GITHUB_ENV
Expand Down

0 comments on commit 34fce9d

Please sign in to comment.