Facebook
From Putrid Earthworm, 2 Years ago, written in C++.
This paste is a reply to Post Build Task from Reuben M - go back
Embed
Viewing differences between Post Build Task and Re: Post Build Task
#!/bin/sh

set -x

#! $1 will contain our build path, which contains our build folder

echo "$1"

cd $1
export buildfolder="22d2 - WebGL/Build"
if [ -z "$buildfolder" ]; then
  echo "Could not find build folder"
  exit 1
fi

if [ ! -d ./tmp ]; then
  git clone "https://${nickname}:${githubkey}@${repository}" ./tmp
fi

cp -r "$buildfolder" ./tmp/assets
cd ./tmp
git add assets/Build
git config --global user.email "$email"
git config --global user.name "$nickname"
git commit -m "Unity Cloud Build WebGL"
git push --force

Replies to Re: Post Build Task rss

Title Name Language When
Re: Re: Post Build Task Morose Eider html5 2 Years ago.