CI: dont deploy releases to fdroid branch (#5)
not needed anymore as fdroid is now configured to build from sourceios
parent
7608509bcc
commit
15c0680158
@ -1,16 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# expects travis env vars: $TRAVIS_TAG, $GITHUB_TOKEN
|
|
||||||
|
|
||||||
rev=$(git rev-parse --short HEAD)
|
|
||||||
target=https://$GITHUB_TOKEN@github.com/sensebox/blockly-app.git
|
|
||||||
branch=fdroid
|
|
||||||
|
|
||||||
git clone --depth=1 -b $branch $target fdroid
|
|
||||||
rm -rf fdroid/*
|
|
||||||
mv -f platforms/android/* fdroid/
|
|
||||||
cd fdroid
|
|
||||||
git config user.name "Travis-CI"
|
|
||||||
git config user.email "travis@travis-ci.org"
|
|
||||||
git add -f --ignore-errors .
|
|
||||||
git commit -m "android project for $TRAVIS_TAG at $rev" --amend # dont add new commits to avoid increasing repo size
|
|
||||||
git push -f $target $branch > /dev/null 2>&1 # hide output to not leak GITHUB_TOKEN in logs
|
|
Loading…
Reference in New Issue