Skip to content

Commit

Permalink
move action
Browse files Browse the repository at this point in the history
  • Loading branch information
remodietlicher committed Feb 22, 2024
1 parent 4e10351 commit a83e027
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/action.yml → .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit a83e027

Please sign in to comment.