Skip to content

Commit c4a2007

Browse files
authored
Fix PR test reports action (#39)
1 parent 9514838 commit c4a2007

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/PklProject.deps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@0": {
1212
"type": "local",
13-
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/[email protected].1",
13+
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/[email protected].2",
1414
"path": "../packages/pkl.impl.ghactions"
1515
}
1616
}

.github/workflows/test_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
path: artifacts
2626
name: test-results-.*
27-
name_is_regex: true
27+
name_is_regexp: true
2828
run_id: ${{ github.event.workflow_run.id }}
2929
- name: Publish test results
3030
uses: EnricoMi/publish-unit-test-result-action@v2

packages/pkl.impl.ghactions/PklCI.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ local testReportWorkflow: Workflow = new {
311311
with {
312312
["path"] = "artifacts"
313313
["name"] = "test-results-.*"
314-
["name_is_regex"] = true
314+
["name_is_regexp"] = true
315315
["run_id"] = "${{ github.event.workflow_run.id }}"
316316
}
317317
}

packages/pkl.impl.ghactions/PklProject

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
amends "../basePklProject.pkl"
1818

1919
package {
20-
version = "0.7.1"
20+
version = "0.7.2"
2121
}
2222

2323
dependencies {

packages/pkl.impl.ghactions/tests/examples.pkl-expected.pcf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ examples {
165165
with:
166166
path: artifacts
167167
name: test-results-.*
168-
name_is_regex: true
168+
name_is_regexp: true
169169
run_id: ${{ github.event.workflow_run.id }}
170170
- name: Publish test results
171171
uses: EnricoMi/publish-unit-test-result-action@v2

0 commit comments

Comments
 (0)