Skip to content

Commit cec1d1a

Browse files
Reorder workflow: build and upload artifact before lint checks
Co-authored-by: abdallahmehiz <54363735+abdallahmehiz@users.noreply.github.com>
1 parent 529c8c5 commit cec1d1a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@ jobs:
2626
run: chmod +x ./gradlew
2727

2828
- name: Build with Gradle
29-
run: ./gradlew detekt assembleRelease
29+
run: ./gradlew assembleRelease
3030

3131
- name: Upload the universal artifact
3232
uses: actions/upload-artifact@v4
3333
with:
3434
path: ./composeApp/build/outputs/apk/release/composeApp-release-unsigned.apk
3535
name: progres
3636

37+
- name: Check linting with Detekt
38+
run: ./gradlew detekt
39+

0 commit comments

Comments
 (0)