Skip to content

Commit 1cb9f12

Browse files
committed
fix PR title
1 parent a90324c commit 1cb9f12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dep_iocipher_jni.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: check if jni update or witness checksums only
3232
id: titletext_str
3333
run: |
34-
(git status 2>/dev/null|grep '^\+' 2>/dev/null|grep -e 'implementation' -e 'com.github.zoff99:pkgs_guardianprojectIOCipher' 2>/dev/null && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update iocipher JNI to $release_tag" >> $GITHUB_OUTPUT) || \
34+
(git diff android-refimpl-app/app/build.gradle android-refimpl-app/app/witness.gradle 2>/dev/null|grep '^\+' 2>/dev/null|(grep 'com.github.zoff99:pkgs_guardianprojectIOCipher' 2>/dev/null| grep 'implementation' 2>/dev/null) && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update iocipher JNI to $release_tag" >> $GITHUB_OUTPUT) || \
3535
(echo "gradle witness checksums update";echo "titletext=update gradle witness checksums 2" >> $GITHUB_OUTPUT;echo "release_tag=" >> $GITHUB_OUTPUT)
3636
3737
- name: cleanup

.github/workflows/dep_toxcore_jni.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
- name: check if toxcore update or witness checksums only
3737
id: titletext_str
3838
run: |
39-
(git status 2>/dev/null|grep '^\+' 2>/dev/null|grep 'com.github.zoff99:pkgs_ToxAndroidRefImpl' 2>/dev/null && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update toxcore JNI to $release_tag" >> $GITHUB_OUTPUT) || \
40-
(echo "gradle witness checksums update";echo "titletext=update gradle witness checksums" >> $GITHUB_OUTPUT;echo "release_tag=" >> $GITHUB_OUTPUT)
39+
(git diff android-refimpl-app/app/build.gradle android-refimpl-app/app/witness.gradle 2>/dev/null|grep '^\+' 2>/dev/null|(grep 'com.github.zoff99:pkgs_ToxAndroidRefImpl' 2>/dev/null| grep 'implementation' 2>/dev/null) && echo "jni version update" && release_tag=$(cat output.txt|grep '__VERSIONUPDATE__'|cut -d':' -f2) && echo "titletext=update toxcore JNI to $release_tag" >> $GITHUB_OUTPUT) || \
40+
(echo "gradle witness checksums update";echo "titletext=update gradle witness checksums 1" >> $GITHUB_OUTPUT;echo "release_tag=" >> $GITHUB_OUTPUT)
4141
4242
- name: cleanup
4343
run: rm -f output.txt

0 commit comments

Comments
 (0)