Skip to content
This repository has been archived by the owner on Jun 27, 2020. It is now read-only.

Commit

Permalink
Add notes about building and improved scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pgaskin committed Jun 22, 2017
1 parent 0c056f5 commit 63afe91
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd scripts

export GITHUB_TOKEN

# To release a new version, create a new tag first, and push with git push --tags
# The release publishing requires a github token to be set in the var GITHUB_TOKEN
# Add any dependencies to install-dependencies.sh

./clean.sh || exit 1
./install-dependencies.sh || exit 1
./build-all.sh || exit 1
Expand Down
3 changes: 3 additions & 0 deletions scripts/publish-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source common.sh

export GITHUB_TOKEN

echo
echo "Publishing GitHub release"
source scripts/common-versioninfo.sh

if [[ "$IS_DEV" == "false" ]]; then
echo "--> Creating release from current tag"
Expand Down

0 comments on commit 63afe91

Please sign in to comment.