forked from tech-shrimp/GithubActionSample
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4929140
commit 4176ae4
Showing
5 changed files
with
73 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: 画爱心macos版 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pyinstaller-build: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Create Executable | ||
uses: sayyid5416/pyinstaller@v1 | ||
with: | ||
python_ver: '3.12' | ||
spec: 'love_heart.py' | ||
upload_exe_with_name: 'love_heart' | ||
options: --onefile, --name "love_heart", --windowed, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: 画爱心Ubuntu版 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pyinstaller-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Executable | ||
uses: sayyid5416/pyinstaller@v1 | ||
with: | ||
python_ver: '3.12' | ||
spec: 'love_heart.py' | ||
upload_exe_with_name: 'love_heart' | ||
options: --onefile, --name "love_heart", --windowed, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: 画爱心Windows版 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pyinstaller-build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Create Executable | ||
uses: sayyid5416/pyinstaller@v1 | ||
with: | ||
python_ver: '3.12' | ||
spec: 'love_heart.py' | ||
upload_exe_with_name: 'love_heart' | ||
options: --onefile, --name "love_heart", --windowed, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters