Allow triggering cache workflow manually Fix haven build script
Allow triggering cache workflow manually Fix haven build script
OmarHatem committed
Aug 30, 2023 at 19:15 UTC
6b9c47563e6410772f080bc3f6c875814285b786
2 files changed
+2
-1
.github/workflows/cache_dependencies.yml
+1
@@ -1,6 +1,7 @@
1
name: Cache Dependencies
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches: [ main ]
7
scripts/android/build_haven.sh
+1
-1
@@ -5,8 +5,8 @@ HAVEN_VERSION=tags/v3.0.7
5
HAVEN_SRC_DIR=${WORKDIR}/haven
6
7
git clone https://github.com/haven-protocol-org/haven-main.git ${HAVEN_SRC_DIR}
8
-git checkout ${HAVEN_VERSION}
8
cd $HAVEN_SRC_DIR
9
+git checkout ${HAVEN_VERSION}
10
git submodule init
11
git submodule update
12