Skip to content

Commit 28ab2ab

Browse files
committed
Refactor GitHub Actions workflow to install ImageMagick without the '-y' flag and verify installation version. Remove zip alignment from debug build type in build.gradle.kts.
1 parent 59f5ad3 commit 28ab2ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ jobs:
3737
- name: Install ImageMagick
3838
run: |
3939
sudo apt-get update
40-
sudo apt-get install -y imagemagick
40+
sudo apt-get install imagemagick
41+
magick --version
4142
4243
- name: Init Project Config
4344
run: |

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ android {
2020
debug {
2121
isMinifyEnabled = true
2222
isShrinkResources = true
23-
isZipAlignEnabled = true
2423
proguardFiles(
2524
getDefaultProguardFile("proguard-android-optimize.txt"),
2625
"proguard-rules.pro"

0 commit comments

Comments
 (0)