Skip to content

Commit

Permalink
Merge pull request #572 from jGaboardi/release_SNAFU
Browse files Browse the repository at this point in the history
bump 1.5.5 --> v1.5.6 after syntax error
  • Loading branch information
jGaboardi committed Jan 4, 2021
2 parents 3a23d1a + 9540d95 commit bf1c827
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
set -- $PKG
echo "name=$1" >> $GITHUB_ENV
- name: Upload Release Asset
id: upload-release-asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/${{ env.whl_path }}
asset_name: ${{ env.whl_path }}
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: dist/${{ env.name }}
asset_name: ${{ env.name }}
asset_content_type: application/zip
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
Expand Down
2 changes: 1 addition & 1 deletion spaghetti/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.5.5"
__version__ = "1.5.6"

"""
# `spaghetti` --- Spatial Graphs: Networks, Topology, & Inference
Expand Down

0 comments on commit bf1c827

Please sign in to comment.