Skip to content

Commit

Permalink
Merge pull request #371 from platanus/fix/circleci-deploy-bash
Browse files Browse the repository at this point in the history
fix(.circleci/config.yml): replace one-liner to please bash
  • Loading branch information
jgmontoya authored Jun 18, 2021
2 parents a879d44 + d76a393 commit 9de17c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ jobs:
name: Publish to rubygems
command: |
gem build potassium.gemspec
gem push potassium-${$(git describe --tags)#*v}.gem
version_tag=$(git describe --tags)
gem push potassium-${version_tag#v}.gem
workflows:
test_and_lint:
Expand Down

0 comments on commit 9de17c7

Please sign in to comment.