Skip to content

Commit

Permalink
Fixed delimiter sign for category splitting at ','.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 14, 2025
1 parent c3b7b3c commit 1e6b71e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 181 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/NightlyRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@ jobs:
)
while [[ "${categories}" != "${category}" ]]; do
category="${categories##*;}"
categories="${categories%;*}"
category="${categories##*,}"
categories="${categories%,*}"
jsonEntry=$(jq -c -n --arg cat "${category}" --argjson value "${jsonEntry}" '{$cat: $value}')
done
Expand Down
178 changes: 0 additions & 178 deletions ExamplePipeline.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ As shown in the screenshots above, the expected order is:

### Example pipeline

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

Expand Down

0 comments on commit 1e6b71e

Please sign in to comment.