We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4682fe0 commit 59780c1Copy full SHA for 59780c1
.github/workflows/scripts/unix-perf-mon.sh
@@ -15,7 +15,14 @@ export ANDROID_NDK_ROOT=/android-sdk/ndk-bundle
15
16
python -m pip install dist/*.whl
17
18
+TAG=$(git describe --exact-match --tags 2>/dev/null || true)
19
+if [ ! -z "$TAG" ]; then
20
+ MORE_TAGS="--tags type=release,release=$TAG"
21
+else
22
+ MORE_TAGS=""
23
+fi
24
+
25
git clone https://github.com/taichi-dev/taichi_benchmark
26
cd taichi_benchmark
27
pip install -r requirements.txt
-python run.py --upload-auth $BENCHMARK_UPLOAD_TOKEN
28
+python run.py --upload-auth $BENCHMARK_UPLOAD_TOKEN $MORE_TAGS
0 commit comments