Merge pull request #10 from Tadaboody/bugfix/remove_double_download

Move existing templates instead of redownloading
This commit is contained in:
Joseph Manley 2020-04-06 04:58:48 -04:00 committed by GitHub
commit 6756c18bd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,8 @@
#!/bin/sh #!/bin/sh
set -e set -e
# Install export templates # Move godot templates already installed from the docker image to home
wget https://downloads.tuxfamily.org/godotengine/3.2.1/Godot_v3.2.1-stable_export_templates.tpz --quiet mv -n /root/.local ~
mkdir ~/.cache
mkdir -p ~/.config/godot
mkdir -p ~/.local/share/godot/templates/3.2.1.stable
unzip Godot_v3.2.1-stable_export_templates.tpz
mv templates/* ~/.local/share/godot/templates/3.2.1.stable
rm -f Godot_v3.2.1-stable_export_templates.tpz
if [ "$3" != "" ] if [ "$3" != "" ]
then then
@ -33,7 +27,7 @@ echo ::set-output name=build::~/build/${SubDirectoryLocation:-""}
if [ "$4" = "true" ] if [ "$4" = "true" ]
then then
mkdir ~/package mkdir -p ~/package
cd ~/build cd ~/build
zip ~/package/artifact.zip ${SubDirectoryLocation:-"."} -r zip ~/package/artifact.zip ${SubDirectoryLocation:-"."} -r
echo ::set-output name=artifact::~/package/artifact.zip echo ::set-output name=artifact::~/package/artifact.zip