From b6c48871b5d545d0be3b7579ed5742bf19144103 Mon Sep 17 00:00:00 2001 From: "Pavel Milanes (CO7WT)" Date: Sun, 9 Jan 2022 00:43:26 -0500 Subject: [PATCH] just one build --- .github/workflows/main.yaml | 30 ++---------------------------- .github/workflows/release.yaml | 3 +++ 2 files changed, 5 insertions(+), 28 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7dc72f4..ca931d0 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -5,34 +5,8 @@ on: pull_request: jobs: - build-nongui: - - runs-on: ubuntu-20.04 - - steps: - - uses: actions/checkout@v2 - - - name: Setup Script - run: ./linux_setup.sh - - - name: Python requisite installs - run: pip3 install -r requirements.txt pyinstaller - - - name: App creation - run: python3 -m PyInstaller -yF rflh.py - - - name: Test App - run: cp rotor.conf dist/ && chmod +x ./dist/rflh && ./dist/rflh 145 -d - - - uses: actions/upload-artifact@v2 - with: - name: rflh-nogui - path: dist/rflh - - build-gui: - + build: runs-on: ubuntu-20.04 - steps: - uses: actions/checkout@v2 @@ -53,6 +27,6 @@ jobs: - uses: actions/upload-artifact@v2 with: - name: rflh-gui + name: rflh path: dist/rflh diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 57d8355..9c8f874 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,6 +11,9 @@ jobs: - name: Setup Script run: ./linux_setup.sh + - name: GUI install + run: sudo apt-get install python3-tk + - name: Python requisite installs run: pip3 install -r requirements.txt pyinstaller