Skip to content

Commit d06c30d

Browse files
committed
fix(build)
Signed-off-by: Marcel Klehr <[email protected]>
1 parent a161a5d commit d06c30d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Static check if css is compatible with the required browsers
5656
run: |
57-
npm run doiuse | sed 's/[^:]*://' > doiuse-report.txt
57+
npm run doiuse | sed 's/[^:]*:|> *//' > doiuse-report.txt
5858
cat doiuse-report.txt
5959
diff doiuse-report.txt doiuse-report.baseline.txt || (echo 'Problem: Build includes CSS that is not compatible with the required browsers. Please check the report above!' && exit 1)
6060

android/app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ android {
3434
}
3535
buildTypes {
3636
release {
37-
signingConfig signingConfigs.release
37+
if (project.hasProperty('FLOCCUS_STORE_FILE') && project.hasProperty('FLOCCUS_STORE_PASSWORD') && project.hasProperty('FLOCCUS_KEY_ALIAS') && project.hasProperty('FLOCCUS_KEY_PASSWORD')) {
38+
signingConfig signingConfigs.release
39+
}
3840
minifyEnabled false
3941
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
4042
}

0 commit comments

Comments
 (0)