Skip to content

Commit

Permalink
Drop orphanaed tags to optimize fetch call
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Oct 13, 2024
1 parent fb9417d commit dcd1f46
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,30 @@ on:
- '.github/ISSUE_TEMPLATE/**'
- 'assets/**'

permissions:
permissions:
actions: write
contents: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
wearos:
orphan:
if: ${{ github.repository == 'HiddenRamblings/TagMo' }}
runs-on: ubuntu-latest
env:
CI: true
steps:

- name: Drop orphan tags
continue-on-error: true
uses: fabriziocacicia/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

wearos:
needs: orphan
continue-on-error: true
runs-on: ubuntu-latest

Expand Down Expand Up @@ -56,6 +70,7 @@ jobs:
# Properties are passed as -Pname=value
properties: |
org.gradle.unsafe.configuration-cache=true
org.gradle.configuration-cache=true
- uses: r0adkll/sign-android-release@v1
name: Sign WearOS APK
Expand Down Expand Up @@ -125,6 +140,7 @@ jobs:
# Properties are passed as -Pname=value
properties: |
org.gradle.unsafe.configuration-cache=true
org.gradle.configuration-cache=true
- uses: r0adkll/sign-android-release@v1
name: Sign Release APK
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ dependencies {
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.fragment:fragment-ktx:1.8.3'
implementation 'androidx.fragment:fragment-ktx:1.8.4'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.webkit:webkit:1.12.0'
implementation 'androidx.webkit:webkit:1.12.1'
wearosImplementation "androidx.wear:wear:1.3.0"

implementation 'com.android.billingclient:billing:7.1.0'
implementation 'com.android.billingclient:billing:7.1.1'

implementation 'com.github.bumptech.glide:glide:4.16.0'
ksp 'com.github.bumptech.glide:ksp:4.16.0'
Expand All @@ -162,5 +162,5 @@ dependencies {

implementation 'org.lsposed.hiddenapibypass:hiddenapibypass:4.3'

implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0'
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ android.useAndroidX=true
kapt.incremental.apt=true
# Caches results of configuration phase for subsequent builds
org.gradle.unsafe.configuration-cache=true
org.gradle.configuration-cache=true
# Gradle wil run parallel compilation tasks within subprojects
kotlin.parallel.tasks.in.project=true
android.defaults.buildfeatures.buildconfig=true
Expand Down

0 comments on commit dcd1f46

Please sign in to comment.