Skip to content

Commit

Permalink
makefile: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Oct 4, 2024
1 parent 9bb62a7 commit 13d7f1e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ test: nextify
lint:
bundle exec rubocop

release: test lint
.PHONY: pure-release
pure-release:
@echo "Executing pure-release target"
RELEASING_ANYWAY=true gem release wsdirector-core -t
RELEASING_ANYWAY=true gem release wsdirector-cli

release: test lint pure-release
git push
git push --tags

ci-release: nextify
RELEASING_ANYWAY=true gem release wsdirector-core -t
RELEASING_ANYWAY=true gem release wsdirector-cli
ci-release: nextify pure-release

0 comments on commit 13d7f1e

Please sign in to comment.