We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed0d00 commit 3c47633Copy full SHA for 3c47633
.releaserc.json
@@ -0,0 +1,13 @@
1
+{
2
+ "plugins": [
3
+ "@semantic-release/commit-analyzer",
4
+ "@semantic-release/release-notes-generator",
5
+ "@semantic-release/github",
6
+ [
7
+ "@semantic-release/exec",
8
+ {
9
+ "publishCmd": "bash deploy.sh"
10
+ }
11
+ ]
12
13
+}
deploy.sh
@@ -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 commit comments