Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update circleci config.yml #148

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ jobs:
- "4f:7d:6b:26:dc:44:de:b0:4d:f1:96:50:2a:b5:bd:b3"
- ensure_poetry_installed
- run:
name: "Install python-semantic-release"
name: "Install python-semantic-release and twine"
command: |
pip install python-semantic-release
pip install python-semantic-release twine
- checkout
- restore_cache: # ensure this step occurs *before* installing dependencies
name: "Restore any valid cache"
Expand All @@ -119,7 +119,9 @@ jobs:
command: |
git config user.name "$GITHUB_USERNAME"
git config user.email "$GITHUB_EMAIL"
semantic-release -vv publish
semantic-release -v version
twine upload dist/*
semantic-release -v publish

static_code_analysis:
parameters:
Expand Down