-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsubmit_code.sh
42 lines (37 loc) · 982 Bytes
/
submit_code.sh
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#set -x
VERSION=$(grep -o '^ *"version": *"[0-9\.]*"' ../composer.json | awk '{print $2}' | sed -e 's/"\(.*\)"/\1/g')
WD=$(pwd)
# Create shared package update payload
SHARED_ARCH_NAME=code_shared.zip
cd ..
zip -r $SHARED_ARCH_NAME ./*
# Upload shared package update to Marketplace
cd "${WD}"
git clone [email protected]:PowerSync/TNW_EQP.git eqp --branch main
[ -f .env ] && cp .env eqp
mv ../$SHARED_ARCH_NAME eqp
cp -r sharedpackage/data eqp
cd eqp
bin/main $SHARED_ARCH_NAME $VERSION 0
RESULT=$?
rm data
rm $SHARED_ARCH_NAME
if [ $RESULT -ne 0 ]; then
exit $RESULT
fi
# Create meta package update payload
cd "${WD}"
META_ARCH_NAME=code_meta.zip
SAMPLE=metapackage/composer.json.sample
TARGET=metapackage/composer.json
cp $SAMPLE $TARGET
sed -i "s/\$VERSION/$VERSION/" $TARGET
zip -j $META_ARCH_NAME $TARGET
# Upload update to Marketplace
mv $META_ARCH_NAME eqp
cp -r metapackage/data eqp
cd eqp
bin/main $META_ARCH_NAME $VERSION 1
RESULT=$?
rm $META_ARCH_NAME
exit $RESULT