prometheus-tlsrpt-exporter/.forgejo/workflows/package.yml
s3lph cfe3b52e52
All checks were successful
/ test (push) Successful in 1m1s
/ codestyle (push) Successful in 59s
/ build_wheel (push) Successful in 1m22s
/ build_debian (push) Successful in 2m37s
feat(ci): twine --verbose turned into default
2023-12-19 04:04:31 +01:00

42 lines
1.4 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
- name: Prepare package
run: |
mkdir -p package/debian/prometheus-tlsrpt-exporter/usr/share/prometheus-tlsrpt-exporter
cp -r templates/ package/debian/prometheus-tlsrpt-exporter/usr/share/prometheus-tlsrpt-exporter/templates/
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-python-debian-package@v4
with:
python_module: tlsrpt_exporter
package_name: prometheus-tlsrpt-exporter
package_root: package/debian/prometheus-tlsrpt-exporter
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"