Fixed publishing workflow

This commit is contained in:
squidfunk
2020-11-22 12:18:14 +01:00
parent ace2b6b21a
commit 759124a5d3

View File

@@ -28,31 +28,31 @@ env:
PYTHON_VERSION: 3.x PYTHON_VERSION: 3.x
jobs: jobs:
# publish_pypi: publish_pypi:
# name: Build and push Python package name: Build and push Python package
# if: github.event.pull_request.head.repo.fork == false if: github.event.pull_request.head.repo.fork == false
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# - name: Checkout repository - name: Checkout repository
# uses: actions/checkout@v2 uses: actions/checkout@v2
# - name: Set up Python runtime - name: Set up Python runtime
# uses: actions/setup-python@v1 uses: actions/setup-python@v1
# with: with:
# python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
# - name: Set up Python dependencies - name: Set up Python dependencies
# run: pip install --upgrade setuptools wheel twine run: pip install --upgrade setuptools wheel twine
# - name: Build Python package - name: Build Python package
# run: python setup.py build sdist bdist_wheel --universal run: python setup.py build sdist bdist_wheel --universal
# - name: Publish Python package - name: Publish Python package
# env: env:
# PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
# PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# run: twine upload --disable-progress-bar -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/* run: twine upload --disable-progress-bar -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*
publish_docker: publish_docker:
name: Build and push Docker image name: Build and push Docker image