Skip to content

Commit 439dbef

Browse files
committed
Fix if statement for accumulo build
1 parent 053e1f2 commit 439dbef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-accumulo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
export newVersion=$(mvn -q help:evaluate -DforceStdout -Dexpression=project.version)
7373
echo accumuloVersion=$newVersion >> $GITHUB_OUTPUT
7474
- name: Deploy Accumulo
75-
if: ${{ github.event.inputs.deployAccumulo }}
75+
if: ${{ github.event.inputs.deployAccumulo == 'true'}}
7676
run: |
7777
export JAVA_HOME="$ACCUMULO_JAVA"
7878
cd "$GITHUB_WORKSPACE/accumulo"

0 commit comments

Comments
 (0)