From 557c0d06ae3b71b58e75f8c57671a0e8f974bb4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathis=20Dr=C3=B6ge?= Date: Sat, 24 Aug 2024 22:36:00 +0200 Subject: [PATCH] Don't build a deb While upstream might need this, we don't --- .github/workflows/python.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 929f40b7..6e048d34 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -53,36 +53,3 @@ jobs: with: name: ${{ matrix.os }}-package path: legendary/dist/* - - deb: - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@v4 - - - name: Dependencies - run: | - sudo apt install ruby - sudo gem install fpm - - - name: Build - run: fpm - --input-type python - --output-type deb - --python-package-name-prefix python3 - --deb-suggests python3-webview - --maintainer "Rodney " - --category python - --depends "python3 >= 3.9" - setup.py - - - name: Os version - id: os_version - run: | - source /etc/os-release - echo ::set-output name=version::$NAME-$VERSION_ID - - - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.os_version.outputs.version }}-deb-package - path: ./*.deb