Skip to content

Commit

Permalink
Use particular credential key from .gem/credentials for pushing.
Browse files Browse the repository at this point in the history
https://twitter.com/pawelpacana/status/956540755887185920

In ~/.gem/credentials:

---
:dev_arkency: SECRET_KEY

[ci skip]
  • Loading branch information
mostlyobvious committed May 1, 2018
1 parent c3b3748 commit 020a384
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion aggregate_root/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion bounded_context/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion rails_event_store-browser/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ build: $(JS_BUNDLE)

push: $(JS_BUNDLE)
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package and bundle"
Expand Down
2 changes: 1 addition & 1 deletion rails_event_store-rspec/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion rails_event_store/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion rails_event_store_active_record-legacy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion rails_event_store_active_record/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion ruby_event_store-rom/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down
2 changes: 1 addition & 1 deletion ruby_event_store/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ build:

push:
@echo "Pushing package to RubyGems"
@gem push pkg/$(GEM_NAME)-$(GEM_VERSION).gem
@gem push -k dev_arkency pkg/$(GEM_NAME)-$(GEM_VERSION).gem

clean:
@echo "Removing previously built package"
Expand Down

0 comments on commit 020a384

Please sign in to comment.