Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't build a deb #8

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
--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
Loading