Skip to content

Commit

Permalink
Merge pull request #8 from Team-Linky/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
sun5066 authored Jun 30, 2024
2 parents 6c0bf35 + f310419 commit 6da21fb
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: develop workflow

on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17.0.7'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- run: echo $KEY_BASE_64_DEBUG | base64 -d > debug.keystore
- name: Decode google-services.json
run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" | base64 --decode > app/google-services.json
- name: Setting local.properties
run: touch local.properties
- name: Build with Gradle
run: ./gradlew assembleDebug
File renamed without changes.
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ android {
}
debug {
isMinifyEnabled = false
signingConfig = signingConfigs.getByName("releaseSigningConfig")
}
}

Expand Down

0 comments on commit 6da21fb

Please sign in to comment.