Add publish action
This commit is contained in:
parent
659adc31cb
commit
0e6be21ddb
42
.gitea/workflow/publish.yaml
Normal file
42
.gitea/workflow/publish.yaml
Normal file
@ -0,0 +1,42 @@
|
||||
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/*
|
Loading…
Reference in New Issue
Block a user