[actions] rename actions

This commit is contained in:
Jan Grewe 2021-03-12 14:01:59 +01:00
parent 99aa6e9540
commit 154ce5069c
4 changed files with 14 additions and 14 deletions

View File

@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
name: BlipBlop app linux
on:
push:

View File

@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
name: BlipBlop app macOS
on:
push:

View File

@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
name: BlipBlop app windows
on:
push:

View File

@ -6,17 +6,17 @@ block_cipher = None
a = Analysis(['blipblop_main.py'],
pathex=['.'],
binaries=[],
datas=[('docs\index.md', "docs"),
('docs\visual_task.md', "docs"),
('docs\auditory_task.md', "docs"),
('docs\license.md', "docs"),
('docs\tasks.md', "docs"),
('docs\images\blipblop_main.png', "docs\images"),
('docs\images\blipblop_logo.png', "docs\images"),
('sounds\bell.wav', "sounds"),
('sounds\complete.wav', "sounds"),
('sounds\message.wav', "sounds"),
('icons\blipblop_logo.ico', '.')
datas=[('docs/index.md', "docs"),
('docs/visual_task.md', "docs"),
('docs/auditory_task.md', "docs"),
('docs/license.md', "docs"),
('docs/tasks.md', "docs"),
('docs/images/blipblop_main.png', "docs/images"),
('docs/images/blipblop_logo.png', "docs/images"),
('sounds/bell.wav', "sounds"),
('sounds/complete.wav', "sounds"),
('sounds/message.wav', "sounds"),
('icons/blipblop_logo.ico', '.')
],
hiddenimports=[],
hookspath=[],