diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 0cae0fa..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - - workflow_dispatch: - -jobs: - build: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - - name: Engage! - run: make - - - name: Use tar to keep executable permissions - run: make archive - - - name: Upload .app - uses: actions/upload-artifact@v2 - with: - name: OnAir.app.tgz - path: dist/OnAir.app.tgz -