From a83e027ce9f825f811ba1187e5187347a6363aef Mon Sep 17 00:00:00 2001 From: Remo Dietlicher Date: Thu, 22 Feb 2024 15:38:01 +0100 Subject: [PATCH] move action --- {build => .github/workflows}/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename {build => .github/workflows}/action.yml (97%) diff --git a/build/action.yml b/.github/workflows/action.yml similarity index 97% rename from build/action.yml rename to .github/workflows/action.yml index 28b9fd1..003b3e3 100644 --- a/build/action.yml +++ b/.github/workflows/action.yml @@ -66,7 +66,7 @@ runs: java-version: '17' - name: Cache Maven packages on self-hosted MinIO - if: ${{ inputs.do_store_upload == false }} + if: ${{ fromJSON(inputs.do_store_upload) == false }} uses: tespkg/actions-cache@adf4e5e57e916ad83e63cc047ce271ef0843a24c with: endpoint: ${{ inputs.self_hosted_cache_endpoint }} @@ -121,7 +121,7 @@ runs: # Setup the build environment with Gradle - name: Publish the app - if: ${{ inputs.do_store_upload == true }} + if: ${{ fromJSON(inputs.do_store_upload) }} shell: bash run: ./gradlew :${{ inputs.appModule }}:publish${{ steps.vars.outputs.flavor_capitalized }}ReleaseUploadBundle env: