Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
deploy:
$(eval VERSION := $(shell cat version.sh | grep 'CODECOV_WRAPPER_VERSION=' | cut -d\" -f2))
git tag -d v0
git push origin :v0
git tag v0
git tag v$(VERSION) -s -m ""
git push origin --tags
3 changes: 1 addition & 2 deletions run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env bash

CODECOV_FLAGS="meow,rawr"

. ./version.sh
. ./set_defaults.sh
. ./download.sh
. ./validate.sh
Expand Down
2 changes: 0 additions & 2 deletions set_defaults.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env bash

CODECOV_WRAPPER_VERSION="0.0.1"

say() {
echo -e "$1"
}
Expand Down
3 changes: 3 additions & 0 deletions version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

CODECOV_WRAPPER_VERSION="0.0.2"