Skip to content

Commit

Permalink
fixed gh-action for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowalleck committed Oct 18, 2020
1 parent fd9a2e6 commit 59a2287
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
python -m pip install tox -c requirements/tox.txt
- name: Build package
run: python -m tox -r -s false -e build
with:
env:
NP_DIST_DIR: ${{ env.dist-dir }}
- name: Artifact build results
# see https://github.com/actions/upload-artifact
Expand All @@ -74,7 +74,7 @@ jobs:
if-no-files-found: error
publish-release:
name: Publish to assets
needs: ['build', 'install']
needs: ['build']
runs-on: ubuntu-latest
steps:
- name: Fetch build results
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
asset_content_type: application/tar+gzip
publish-pypi:
name: Publish to PyPI
needs: ['build', 'install']
needs: ['build']
if: ${{ github.repository_owner == 'k4cg' }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 59a2287

Please sign in to comment.