Skip to content

Commit

Permalink
ci: fix variable name formatting in pytest results upload step
Browse files Browse the repository at this point in the history
  • Loading branch information
pwwang committed Jan 15, 2025
1 parent 498c86b commit c69064a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/liquidpy_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ inputs.python-version }}-${{ inputs.jinja2_version }}
path: junit/test-results-${{ inputs.python-version }}-${{ inputs.jinja2_version }}.xml
name: pytest-results-${{ inputs.python_version }}-${{ inputs.jinja2_version.replace('*', 'x') }}
path: junit/test-results-${{ inputs.python_version }}-${{ inputs.jinja2_version.replace('*', 'x') }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

0 comments on commit c69064a

Please sign in to comment.