Skip to content

Commit 001c71c

Browse files
committed
Fix CI/release workflows for renamed modules and rebrand.
1 parent 15cdc5f commit 001c71c

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,26 @@ jobs:
2323
- uses: gradle/actions/setup-gradle@v4
2424

2525
- name: Build debug APK
26-
run: ./gradlew :BT_Free:assembleDebug
26+
run: ./gradlew :app:assembleDebug
2727

2828
- name: Detekt
29-
run: ./gradlew :BTLib:detekt
29+
run: ./gradlew :lib:detekt
3030

3131
- name: Lint
32-
run: ./gradlew :BTLib:lint :BT_Free:lint
32+
run: ./gradlew :lib:lint :app:lint
3333
continue-on-error: true
3434

3535
- name: Upload debug APK
3636
uses: actions/upload-artifact@v4
3737
with:
38-
name: blowtorch-debug
39-
path: BT_Free/build/outputs/apk/debug/BT_Free-debug.apk
38+
name: mudwammer-debug
39+
path: app/build/outputs/apk/debug/app-debug.apk
4040

4141
- name: Upload lint reports
4242
if: always()
4343
uses: actions/upload-artifact@v4
4444
with:
4545
name: lint-reports
4646
path: |
47-
BTLib/build/reports/lint-results*.html
48-
BT_Free/build/reports/lint-results*.html
47+
lib/build/reports/lint-results*.html
48+
app/build/reports/lint-results*.html

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
- uses: gradle/actions/setup-gradle@v4
2626

2727
- name: Build debug APK
28-
run: ./gradlew :BT_Free:assembleDebug
28+
run: ./gradlew :app:assembleDebug
2929

3030
- name: Rename APK
3131
env:
3232
TAG: ${{ github.ref_name }}
33-
run: cp BT_Free/build/outputs/apk/debug/BT_Free-debug.apk "BlowTorch-${TAG}.apk"
33+
run: cp app/build/outputs/apk/debug/app-debug.apk "MUDWammer-${TAG}.apk"
3434

3535
- name: Create release
3636
env:
3737
GH_TOKEN: ${{ github.token }}
3838
TAG: ${{ github.ref_name }}
39-
run: gh release create "$TAG" "BlowTorch-${TAG}.apk" --generate-notes
39+
run: gh release create "$TAG" "MUDWammer-${TAG}.apk" --generate-notes

0 commit comments

Comments
 (0)