Add dollar sign to fix github actions templating for outputs

This commit is contained in:
David Dworken 2023-12-03 16:47:09 -08:00
parent 55a4f1ddb0
commit f88e1d5b3b
No known key found for this signature in database

View File

@ -85,13 +85,13 @@ jobs:
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results-{{ matrix.os }}.json
name: test-results-${{ matrix.os }}.json
path: /tmp/testrun.json
- name: Upload failed test goldens
uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-goldens-{{ matrix.os }}
name: test-goldens-${{ matrix.os }}
path: /tmp/test-goldens/
# - name: Setup tmate session