mirror of
https://github.com/secynic/ipwhois.git
synced 2025-12-10 00:40:57 -06:00
Merge branch 'dev' into secynic-gh-action-pypi
This commit is contained in:
commit
e688107be6
26
.github/workflows/python-publish-test.yml
vendored
Normal file
26
.github/workflows/python-publish-test.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Upload Python Package to Test PyPi
|
||||||
|
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install setuptools wheel twine
|
||||||
|
- name: Build and publish
|
||||||
|
env:
|
||||||
|
TWINE_USERNAME: secynic
|
||||||
|
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
python setup.py sdist bdist_wheel
|
||||||
|
twine upload --repository testpypi dist/*
|
||||||
Loading…
x
Reference in New Issue
Block a user