Skip to content

Commit 9de17c7

Browse files
authored
Merge pull request #371 from platanus/fix/circleci-deploy-bash
fix(.circleci/config.yml): replace one-liner to please bash
2 parents a879d44 + d76a393 commit 9de17c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ jobs:
8989
name: Publish to rubygems
9090
command: |
9191
gem build potassium.gemspec
92-
gem push potassium-${$(git describe --tags)#*v}.gem
92+
version_tag=$(git describe --tags)
93+
gem push potassium-${version_tag#v}.gem
9394
9495
workflows:
9596
test_and_lint:

0 commit comments

Comments
 (0)