Skip to content

Commit

Permalink
Fixed publishing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Nov 22, 2020
1 parent 84297c5 commit ace2b6b
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ env:
PYTHON_VERSION: 3.x

jobs:
publish_pypi:
name: Build and push Python package
if: github.event.pull_request.head.repo.fork == false
runs-on: ubuntu-latest
steps:
# publish_pypi:
# name: Build and push Python package
# if: github.event.pull_request.head.repo.fork == false
# runs-on: ubuntu-latest
# steps:

- name: Checkout repository
uses: actions/checkout@v2
# - name: Checkout repository
# uses: actions/checkout@v2

- name: Set up Python runtime
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON_VERSION }}
# - name: Set up Python runtime
# uses: actions/setup-python@v1
# with:
# python-version: ${{ env.PYTHON_VERSION }}

- name: Set up Python dependencies
run: pip install --upgrade setuptools wheel twine
# - name: Set up Python dependencies
# run: pip install --upgrade setuptools wheel twine

- name: Build Python package
run: python setup.py build sdist bdist_wheel --universal
# - name: Build Python package
# run: python setup.py build sdist bdist_wheel --universal

- name: Publish Python package
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*
# - name: Publish Python package
# env:
# PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
# PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# run: twine upload --disable-progress-bar -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*

publish_docker:
name: Build and push Docker image
Expand Down Expand Up @@ -95,5 +95,5 @@ jobs:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
docker push --quiet ${{ github.event.repository.full_name }}
docker push --quiet ghcr.io/${{ github.event.repository.full_name }}
docker push ${{ github.event.repository.full_name }}
docker push ghcr.io/${{ github.event.repository.full_name }}

0 comments on commit ace2b6b

Please sign in to comment.