Skip to content

Commit

Permalink
fix(deploy): Fix deployment stage
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Jun 6, 2020
1 parent 4ed0d00 commit 3c47633
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"publishCmd": "bash deploy.sh"
}
]
]
}
6 changes: 6 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

echo "Building distribution"
# python setup.py sdist bdist_wheel
echo "Pushing new version to PyPi"
# twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD

0 comments on commit 3c47633

Please sign in to comment.