abstreet/release/build.sh
2020-02-07 15:05:24 -08:00

25 lines
452 B
Bash
Executable File

#!/bin/bash
# Called by Github Actions workflow
set -e
output=$1;
runner=$2;
binary=$3;
mkdir $output
cd $output
../data/grab_minimal_seed_data.sh
cd ..
cp docs/INSTRUCTIONS.md $output
cp release/$runner $output
mkdir $output/game
cp $binary $output/game
cp -Rv game/assets $output/game
# TODO Github will double-zip this, but if we just pass the directory, then the
# chmod +x bits get lost
zip -r $output $output
rm -rf release_data.zip $output