mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-21 19:18:41 +00:00
Github actions changes
This commit is contained in:
parent
f2b5bbe1f3
commit
667795db6f
2 changed files with 11 additions and 6 deletions
15
.github/workflows/python-publish.yml
vendored
15
.github/workflows/python-publish.yml
vendored
|
@ -1,7 +1,7 @@
|
|||
# This workflow will upload a Python Package using Twine when a release is created
|
||||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
|
||||
|
||||
name: Publish Python Package
|
||||
name: Publish python packages
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -25,10 +25,15 @@ jobs:
|
|||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install setuptools wheel twine
|
||||
- name: Build and publish
|
||||
- name: Build
|
||||
run: python setup.py sdist bdist_wheel
|
||||
- name: Publish wheel
|
||||
env:
|
||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
run: |
|
||||
python setup.py sdist bdist_wheel
|
||||
twine upload dist/*
|
||||
run: twine upload dist/*.whl
|
||||
- name: Publish source
|
||||
env:
|
||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
run: twine upload dist/*.tar.gz || true
|
||||
|
|
2
.github/workflows/python-test.yml
vendored
2
.github/workflows/python-test.yml
vendored
|
@ -1,7 +1,7 @@
|
|||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
||||
|
||||
name: Python test
|
||||
name: Test python code
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
Loading…
Reference in a new issue