Skip to content

Commit

Permalink
bump to v1.6.0.post5 - another try
Browse files Browse the repository at this point in the history
  • Loading branch information
jGaboardi committed Jun 25, 2021
1 parent a99e1fc commit 71013e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ on:

jobs:
build:
name: create release & publish to PyPI
name: Create release & publish to PyPI
runs-on: ubuntu-latest
steps:
- name: checkout repo
- name: Checkout repo
uses: actions/checkout@v2

- name: set up python
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: install dependencies
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine jupyter urllib3 pandas pyyaml
Expand All @@ -42,12 +42,15 @@ jobs:
env:
TEXT: ${{ steps.changetxt.outputs.text }}

- name: Get the tag name
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

- name: Release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.changetxt.outputs.text }}
body_path: ${{ steps.changetxt.outputs.path }}
name: Release ${{ github.GITHUB_REF }}
name: Release ${{ env.TAG }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -83,7 +86,7 @@ jobs:
# asset_name: ${{ env.name }}
# asset_content_type: application/zip

- name: publish distribution 📦 to PyPI
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
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.6.0.post2"
__version__ = "1.6.0.post5"

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

0 comments on commit 71013e3

Please sign in to comment.