pyOwlBoard/.gitea/workflows/publish.yaml

42 lines
995 B
YAML
Raw Normal View History

2024-10-31 20:00:05 +00:00
name: Publish to PyPI and Gitea Package Server
on:
push:
tags:
- 'v*'
jobs:
publish-and-sync:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish to PyPI
env:
TWINE_USER: ${{ secrets.PYPI_USERNAME }}
TWINE_PASS: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload dist/*
- name: Publish to Gitea
env:
TWINE_USER: ${{ secrets.GT_PKG_USER }}
TWINE_PASS: ${{ secrets.GT_PKG_KEY }}
run: |
twine upload --repository-url https://git.fjla.uk/api/packages/owlboard/pypi dist/*