Skip to content

Commit

Permalink
ci: fix clean up
Browse files Browse the repository at this point in the history
Signed-off-by: moabu <[email protected]>
  • Loading branch information
moabu committed Jan 7, 2025
1 parent fcfda4e commit ef19e44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
id: get_version_id
run: |
services=$(gh api -H "Accept: application/vnd.github+json" \
/orgs/JanssenProject/packages?package_type=maven \
| jq -r '.[].name' | tr '\n' ' ')
services="\"$services\""
for service in "$services"; do
/orgs/JanssenProject/packages?package_type=maven \
| jq -r '.[].name' | tr '\n' ' ' | sed 's/ *$//')
for service in $services; do
echo "Checking $service"
version_id=$(gh api -H "Accept: application/vnd.github+json" \
/orgs/JanssenProject/packages/maven/io.jans.${service}/versions \
Expand Down

0 comments on commit ef19e44

Please sign in to comment.