Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dreadl0ck committed Nov 16, 2017
1 parent 41d3425 commit d204787
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
1 change: 1 addition & 0 deletions wiki/docs/TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

## v0.8.3

- global should start with an uppercase letter
- fix brew install
- fix argument / chain / path completion
- add pitfalls to README (stopOnError in bash)
Expand Down
8 changes: 1 addition & 7 deletions zeus/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ globals:
# exec # string # supply the script directly without a file
# language # string # set the language for the script
commands:
testComman:

# Utils
#
Expand Down Expand Up @@ -154,9 +153,4 @@ commands:
fi
release:
description: release a new version
dependencies:
- clean
arguments:
- force:Bool
- v:String
description: release a new version
2 changes: 1 addition & 1 deletion zeus/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# /_____ \\___ >____//____ >
# \/ \/ \/
# Build System
# v0.8.2
# v0.8.1
#

buildNumber: 160
Expand Down
9 changes: 6 additions & 3 deletions zeus/scripts/release.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
#!/bin/bash

if [[ $force != true ]]; then
read -p "[INFO] Version ${version} correct? Hit [ENTER] to release."
fi
read -p "[INFO] new Version ${version} correct? Hit [ENTER] to release."

echo "[INFO] creating new git tag"
git tag -a "v${version}" -m "release v${version}"

echo "[INFO] pushing new git tag"
git push origin "v${version}"

echo "[INFO] running goreleaser"
goreleaser

echo "[INFO] done"

0 comments on commit d204787

Please sign in to comment.