39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
|
---
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- "v*"
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build_wheel:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||
|
- name: Build Python wheel
|
||
|
run: |
|
||
|
apt update; apt install -y python3-pip
|
||
|
pip3 install --break-system-packages -e .[test]
|
||
|
python3 setup.py egg_info bdist_wheel
|
||
|
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-wheel-package-upload@v3
|
||
|
with:
|
||
|
username: ${{ secrets.API_USERNAME }}
|
||
|
password: ${{ secrets.API_PASSWORD }}
|
||
|
|
||
|
build_debian:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||
|
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-python-debian-package@v5
|
||
|
with:
|
||
|
python_module: easywks
|
||
|
package_name: easywks
|
||
|
package_root: package/debian/easywks
|
||
|
package_output_path: package/debian
|
||
|
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-debian-package-upload@v2
|
||
|
with:
|
||
|
username: ${{ secrets.API_USERNAME }}
|
||
|
password: ${{ secrets.API_PASSWORD }}
|
||
|
deb: "package/debian/*.deb"
|