Skip to content

Commit

Permalink
bytt til å bruke test miljøet, og legg til autobygg av apk ved ny tag
Browse files Browse the repository at this point in the history
  • Loading branch information
shoyheim-dd committed Oct 22, 2024
1 parent 1ca255f commit c7b9e7e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build & Publish Release APK

on:
push:
tags:
- '*'

jobs:
Gradle:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: setup jdk
uses: actions/setup-java@v1
with:
java-version: 17
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Build Release APK
run: ./gradlew assembleDemo
- name: Releasing using Hub
uses: kyze8439690/action-release-releaseapk@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
APP_FOLDER: app
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "automatic"
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ internal class WalletCoreConfigImpl(
const val VCI_CLIENT_ID = "abr.vc.local"
const val AUTHENTICATION_REQUIRED = false
*/
const val VCI_ISSUER_URL = "https://demo-vc-issuer.idporten.dev"
const val VCI_CLIENT_ID = "demo-vc-issuer.idporten.dev"
const val VCI_ISSUER_URL = "https://demo-vc-issuer.test.idporten.no"
const val VCI_CLIENT_ID = "demo-vc-issuer.test.idporten.no"
const val AUTHENTICATION_REQUIRED = false
}

Expand Down

0 comments on commit c7b9e7e

Please sign in to comment.