From fa9e920b55db2e7047293f885375487e47ee3d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Miguel=20Rubio?= Date: Fri, 22 Mar 2024 12:34:34 +0100 Subject: [PATCH 1/4] Create publish-libraries.yml --- .github/workflows/publish-libraries.yml | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/publish-libraries.yml diff --git a/.github/workflows/publish-libraries.yml b/.github/workflows/publish-libraries.yml new file mode 100644 index 0000000000..94b5ccb317 --- /dev/null +++ b/.github/workflows/publish-libraries.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Publish libraries + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" From a080207e2a960e6fd3be1e0d9be0b7aab85c646c Mon Sep 17 00:00:00 2001 From: Pablo Date: Mon, 8 Apr 2024 11:40:51 +0200 Subject: [PATCH 2/4] Create build-release-candidate.yml --- .github/workflows/build-release-candidate.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/build-release-candidate.yml diff --git a/.github/workflows/build-release-candidate.yml b/.github/workflows/build-release-candidate.yml new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/.github/workflows/build-release-candidate.yml @@ -0,0 +1 @@ + From 33d2b7403b4c3a7862849c04dc1a89f5118a74bd Mon Sep 17 00:00:00 2001 From: Pablo Date: Mon, 8 Apr 2024 11:43:57 +0200 Subject: [PATCH 3/4] Update build-release-candidate.yml --- .github/workflows/build-release-candidate.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/build-release-candidate.yml b/.github/workflows/build-release-candidate.yml index 8b13789179..f6bd368099 100644 --- a/.github/workflows/build-release-candidate.yml +++ b/.github/workflows/build-release-candidate.yml @@ -1 +1,26 @@ +name: Build Release Candidate +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" From 144f8bed7eac41c16b8a97a4f6f006b096620c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Miguel=20Rubio?= Date: Thu, 11 Apr 2024 11:04:25 +0200 Subject: [PATCH 4/4] Update mobile-ui library version to 0.1-SNAPSHOT (#3579) Signed-off-by: andresmr --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 11cc6f62bd..ff295f775f 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,7 +10,7 @@ kotlin = '1.9.21' hilt = '2.47' hiltCompiler = '1.0.0' jacoco = '0.8.10' -designSystem = "1.0-20240126.103542-129" +designSystem = "0.1-SNAPSHOT" dhis2sdk = "1.9.1" ruleEngine = "2.1.9" appcompat = "1.6.1"