-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from timmyb824/ci/fix-ci-versioning6
- Loading branch information
Showing
1 changed file
with
1 addition
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,7 @@ jobs: | |
git config user.email [email protected] | ||
semantic_release_exit_code=0 | ||
poetry run semantic-release version || semantic_release_exit_code=$? | ||
echo $semantic_release_exit_code | ||
if [ $semantic_release_exit_code -eq 0 ]; then | ||
poetry run semantic-release changelog | ||
poetry run semantic-release publish | ||
|
@@ -113,13 +114,6 @@ jobs: | |
echo "No release published, skipping remaining steps" | ||
fi | ||
# Unable to use at the moment due to the python version used by the action | ||
# - name: Run Python Semantic Release | ||
# id: release | ||
# uses: python-semantic-release/python-semantic-release@master | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish to TestPyPI | ||
id: test_publish | ||
if: steps.package_release.outputs.PACKAGE_RELEASE_SUCCESS == 'true' | ||
|