blob: 3611c597aaf7baaa9b44174ab664a636e8d033a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#! /bin/bash
# This script is used in release-it as hook
# Change how this script is triggered by editing .release-it.json
# NOTE: Please make sure working directory is in root of repo
# NOTE: This script is only working on linux
set -e
# Get version from tag
git describe --abbrev=0 > VERSION
# Copy files based on files_to_copy
to_dist=__builds__/bazarr
mkdir -p $to_dist
file_list=$(cat .github/files_to_copy)
for f in $file_list
do
echo "**** copying $f to release ****"
cp -r --parents $f $to_dist
done
pushd __builds__/bazarr
zip -r ../bazarr.zip . -x '*.map' -b $(mktemp -d)
popd
rm -rf $to_dist
|