We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ea63b commit 2b8c055Copy full SHA for 2b8c055
.github/actions/workflow-metrics/action.yml
@@ -23,10 +23,10 @@ runs:
23
24
# Build job name with matrix values
25
job_name="${{ github.job }}"
26
- if [ -z "${{ matrix.java-version }}" ]; then
+ if [ ! -z "${{ matrix.java-version || '' }}" ]; then
27
job_name="${job_name}(${{ matrix.java-version }})"
28
fi
29
- if [ -z "${{ matrix.os }}" ]; then
+ if [ ! -z "${{ matrix.os || '' }}" ]; then
30
job_name="${job_name}(${{ matrix.os }})"
31
32
0 commit comments