mirror of
https://github.com/konsoletyper/teavm.git
synced 2024-11-21 01:00:54 +08:00
37 lines
1.0 KiB
Bash
Executable File
37 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "${SSH_KEY}" | base64 --decode >/tmp/sftp_rsa
|
|
chmod 0700 /tmp/sftp_rsa
|
|
SCP="scp -o StrictHostKeyChecking=no -i /tmp/sftp_rsa -B -r -P $FTP_PORT"
|
|
SCP_TARGET="$FTP_USER@$FTP_HOST:~/$FTP_PATH"
|
|
|
|
#
|
|
# Upload CLI
|
|
#
|
|
$SCP tools/cli/target/teavm-cli-$NEW_VERSION.jar $SCP_TARGET/cli/dev/
|
|
|
|
#
|
|
# Update IDEA repository descriptor
|
|
#
|
|
cat <<EOF >.idea-repository.xml
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<plugins>
|
|
<plugin id="org.teavm.idea" url="https://dl.bintray.com/konsoletyper/teavm/org/teavm/teavm-idea/$NEW_VERSION/teavm-idea-$NEW_VERSION.zip" version="$NEW_VERSION">
|
|
<idea-version since-build="173.*" until-build="193.*" />
|
|
<description>TeaVM support</description>
|
|
</plugin>
|
|
</plugins>
|
|
EOF
|
|
|
|
$SCP .idea-repository.xml $SCP_TARGET/idea/dev/teavmRepository.xml
|
|
|
|
#
|
|
# Upload Eclipse plugin
|
|
#
|
|
#cd tools/eclipse/updatesite/target/repository
|
|
# find . -type f -exec curl \
|
|
# --ftp-create-dirs \
|
|
# -u $TEAVM_FTP_LOGIN:$TEAVM_FTP_PASSWORD \
|
|
# -T {} \
|
|
# ftp://$TEAVM_FTP_HOST/httpdocs/eclipse/update-site/$BASE_VERSION-dev/{} \;
|
|
#cd ../../../../.. |