Skip to content

Commit

Permalink
Merge branch 'main' into fix/WAL-57
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiokot committed Feb 22, 2024
2 parents ed61d55 + 755ce85 commit 625ea1f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build

on:
push:
branches:
- "main"
paths-ignore:
- '*.md'
pull_request:
branches:
- "main"
workflow_dispatch:

env:
java_version: "11"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: "${{env.java_version}}"
distribution: corretto
cache: gradle # caches dependencies (https://github.com/actions/setup-java#caching-packages-dependencies)

- name: Build project (Stagenet)
run: ./gradlew app:assembleStagenetDebug --stacktrace
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ android {
minSdkVersion 26
targetSdkVersion 34
versionCode vCode
versionName "0.6.1-qa.6"
versionName "0.6.1-qa.7"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -180,7 +180,7 @@ android {

resValue "string", "wc_scheme", "\"${WC_SCHEME_BASE}\""

def providerAuthority = PROVIDER_AUTHORITY_BASE+"-testnet"
def providerAuthority = PROVIDER_AUTHORITY_BASE
resValue "string", "PROVIDER_AUTHORITY", "\"${providerAuthority}\""
buildConfigField("String", "PROVIDER_AUTHORITY", "\"${providerAuthority}\"")

Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 625ea1f

Please sign in to comment.