From b03301824b8173eac35ff7a1c8dba46c675a0bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Miguel=20Rubio?= Date: Wed, 3 Jan 2024 11:37:13 +0100 Subject: [PATCH] Add develop branch to snapshot deployments (#172) --- .github/workflows/continuous-deployment.yml | 4 +++- README.md | 2 +- designsystem/build.gradle.kts | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index 36eaf4fc4..0a95b8068 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -5,7 +5,9 @@ name: Continuous deployment # Controls when the workflow will run on: push: - branches: [ "main" ] + branches: + - main + - develop # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/README.md b/README.md index e17ea0f65..6c4745d24 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ In the module **build.gradle.kts**: ```kotlin dependencies { - implementation("org.hisp.dhis.mobile:designsystem:1.0-SNAPSHOT") + implementation("org.hisp.dhis.mobile:designsystem:0.2-SNAPSHOT") } ``` diff --git a/designsystem/build.gradle.kts b/designsystem/build.gradle.kts index 5d15346b3..cbf2ead96 100644 --- a/designsystem/build.gradle.kts +++ b/designsystem/build.gradle.kts @@ -1,5 +1,5 @@ group = "org.hisp.dhis.mobile" -version = "1.0-SNAPSHOT" +version = "0.2-SNAPSHOT" plugins { kotlin("multiplatform")