v0.7.9-rc14
Pre-release
Pre-release
fix: release script syntax (#874) Attempt to fix the `release` GH action which is [currently](https://github.com/ovrclk/akash/runs/1281859108?check_suite_focus=true) resulting in an error: ``` Run echo ::set-output name=MAINNET::$([[ $(./script/semver.sh get minor ${GITHUB_REF#refs/tags/) % 2 ]] && echo true || echo false) /home/runner/work/_temp/41120ada-b8f4-460f-b416-db488976ea0b.sh: line 1: unexpected EOF while looking for matching `}' Error: Process completed with exit code 2. ``` Fix: remove unbalanced and unnecessary `{` [GH Documentation](https://docs.github.com/en/free-pro-team@latest/actions/reference/environment-variables) indicates no curly braces are needed. Signed-off-by: Josh Roppo <josh@akash.network>