Skip to content

Commit b1e4cb9

Browse files
committed
v4.0.1
2 parents 5d8a608 + 1e6b71e commit b1e4cb9

File tree

4 files changed

+5
-183
lines changed

4 files changed

+5
-183
lines changed

.github/workflows/NightlyRelease.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -439,8 +439,8 @@ jobs:
439439
)
440440
441441
while [[ "${categories}" != "${category}" ]]; do
442-
category="${categories##*;}"
443-
categories="${categories%;*}"
442+
category="${categories##*,}"
443+
categories="${categories%,*}"
444444
jsonEntry=$(jq -c -n --arg cat "${category}" --argjson value "${jsonEntry}" '{$cat: $value}')
445445
done
446446

.github/workflows/_Checking_JobTemplates.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
7575

7676
DocCoverage:
77-
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@dev
77+
uses: pyTooling/Actions/.github/workflows/CheckDocumentation.yml@main
7878
needs:
7979
- ConfigParams
8080
- UnitTestingParams
@@ -141,7 +141,7 @@ jobs:
141141
latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
142142

143143
IntermediateCleanUp:
144-
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@dev
144+
uses: pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@main
145145
needs:
146146
- UnitTestingParams
147147
- PublishCoverageResults

ExamplePipeline.yml

-178
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ As shown in the screenshots above, the expected order is:
100100

101101
### Example pipeline
102102

103-
[ExamplePipeline.yml](ExamplePipeline.yml) is an example Workflow which uses all of the Reusable Workflows.
103+
ExamplePipeline.yml is an example Workflow which uses all of the Reusable Workflows.
104104
Python package/tool developers can copy it into their repos, in order to use al the reusable workflows straightaway.
105105
Minimal required modifications are the following:
106106

0 commit comments

Comments
 (0)