Skip to content

Commit

Permalink
Merge pull request #149 from 4dn-dcic/upd_publish_action
Browse files Browse the repository at this point in the history
updated the publish action to explicily use poetry publish
  • Loading branch information
aschroed authored Jan 19, 2021
2 parents 20433a6 + 53b32f4 commit 52ba729
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main-publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# PyPi publish for Submit4DN

name: publish
name: publish

# Controls when the action will run.
# Controls when the action will run.
on:

# Publish on all tags
Expand All @@ -28,4 +28,6 @@ jobs:
env:
PYPI_USER: ${{ secrets.PYPI_USER }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: make publish
run: |
pip install poetry
poetry publish --no-interaction --build --username=$PYPI_USER --password=$PYPI_PASSWORD
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Submit4DN"
version = "2.0.1"
version = "2.0.2"
description = "Utility package for submitting data to the 4DN Data Portal"
authors = ["4DN-DCIC Team <support@4dnucleome.org>"]
license = "MIT"
Expand Down

0 comments on commit 52ba729

Please sign in to comment.