prometheus-tlsrpt-exporter/.forgejo/workflows/package.yml

43 lines
1.4 KiB
YAML
Raw Permalink Normal View History

---
on:
2023-12-17 20:39:06 +01:00
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
2023-12-17 20:41:51 +01:00
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
2023-12-19 03:51:36 +01:00
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/
2023-12-19 03:12:45 +01:00
- 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
2023-12-19 02:48:00 +01:00
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-debian-package-upload@v2
with:
2023-12-19 03:51:36 +01:00
username: ${{ secrets.API_USERNAME }}
password: ${{ secrets.API_PASSWORD }}
deb: "package/debian/*.deb"