Adam Goldsmith
20c9cb074e
Some checks failed
Upload Package / test and upload package (push) Failing after 6s
23 lines
661 B
YAML
23 lines
661 B
YAML
name: Upload Package
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test and upload package:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: pip install -r requirements.txt
|
|
- run: pip install -r test-requirements.txt
|
|
- run: pytest --cov=openapi_client_udm
|
|
|
|
- run: pip install twine
|
|
- run: python3 -m build
|
|
- run: python3 -m twine upload dist/*
|
|
env:
|
|
TWINE_REPOSITORY_URL: "${{ gitea.server_url }}/api/packages/${{ gitea.repository_owner }}/pypi"
|
|
TWINE_USERNAME: "${{ secrets.PACKAGE_REPO_USERNAME }}"
|
|
TWINE_PASSWORD: "${{ secrets.PACKAGE_REPO_PASSWORD }}"
|