wheels/.forgejo/workflows/pycairo.yaml

41 lines
1.1 KiB
YAML

name: Build pycairo
on:
workflow_dispatch:
schedule:
- cron: "0 10 * * 0"
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
environment: pypi
steps:
- uses: actions/checkout@v4
with:
repository: "pygobject/pycairo"
github-server-url: "https://github.com"
token: ""
ssh-key: ""
persist-credentials: false
- name: Set up development headers
run: |
sudo apt-get install -yqq python3 python3-dev libcairo2
- name: Build wheels
uses: https://github.com/pypa/cibuildwheel@v2.23.3
- name: Publish package distributions to Forgejo
uses: https://github.com/pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://git.weddingfactory.eu/api/packages/cmwedding/pypi/simple
user: cmwedding-bot
password: ${{ secrets.FORGEJO_TOKEN }}
packages-dir: ./wheelhouse
skip-existing: true