-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/bin/sh | ||
|
||
version=$(shell date +%Y%m%d%H%M%S) | ||
version=$(date +%Y%m%d%H%M%S) | ||
|
||
mkdir -p ~/.ssh | ||
curl -s $(GITHUB_KEY_URL) -o ~/.ssh/id_rsa | ||
curl -s ${GITHUB_KEY_URL} -o ~/.ssh/id_rsa | ||
chmod 0400 ~/.ssh/id_rsa | ||
git tag ${version} | ||
git push origin ${version} | ||
|
||
curl -s $(EQUINOX_KEY_URL) -o /tmp/equinox.key | ||
equinox release --version=${version} --platforms="darwin_386 darwin_amd64 linux_386 linux_amd64 windows_386 windows_amd64" --channel=stable --signing-key=/tmp/equinox.key --app=$(EQUINOX_APP) --token=$(EQUINOX_TOKEN) | ||
curl -s ${EQUINOX_KEY_URL} -o /tmp/equinox.key | ||
equinox release --version=${version} --platforms="darwin_386 darwin_amd64 linux_386 linux_amd64 windows_386 windows_amd64" --channel=stable --signing-key=/tmp/equinox.key --app=${EQUINOX_APP} --token=${EQUINOX_TOKEN} |