Skip to content

Commit

Permalink
build actions tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevPavelmc committed Jan 9, 2022
1 parent 6ee770e commit 5362fbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ on:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

jobs:
build-nongui:
Expand All @@ -25,7 +21,7 @@ jobs:
run: pip3 install -r requirements.txt pyinstaller

- name: App creation
run: python3 -m PyInstaller -yF --hidden-import Hamlib rflh.py
run: python3 -m PyInstaller -yF rflh.py

- name: Test App
run: cp rotor.conf dist/ && chmod +x ./dist/rflh && ./dist/rflh 145 -d
Expand All @@ -52,7 +48,7 @@ jobs:
run: pip3 install -r requirements.txt pyinstaller

- name: App creation
run: python3 -m PyInstaller -yF --hidden-import Hamlib rflh.py
run: python3 -m PyInstaller -yF rflh.py

- name: Test App
run: cp rotor.conf dist/ && chmod +x ./dist/rflh && ./dist/rflh 145 -d
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Build and Release
on:
push:
branches:
- main
pull_request:
branches:
- main
Expand All @@ -20,7 +17,7 @@ jobs:
run: pip3 install -r requirements.txt pyinstaller

- name: App creation
run: python3 -m PyInstaller -yF --hidden-import Hamlib rflh.py
run: python3 -m PyInstaller -yF rflh.py

- name: Test App
run: cp rotor.conf dist/ && chmod +x ./dist/rflh && ./dist/rflh 145 -d
Expand Down

0 comments on commit 5362fbd

Please sign in to comment.