Skip to content

Commit

Permalink
More escape characters adventures
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Nov 16, 2023
1 parent dbf2e0b commit 26c4e08
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ jobs:
for d in "${DOCKERFILES[@]}"; do
# Clip off /Dockerfile and use the rest to handle package name and major tag
BASE=${d%/*}
VERSION=${BASE##*/}
PACKAGE=${BASE%/*}
echo "{\"package\": \"$PACKAGE\", \"major_tag\": \"$VERSION\"},"
echo "{\"package\": \"${BASE%/*}\", \"major_tag\": \"${BASE##*/}\"},"
done
echo "]"
)
Expand All @@ -50,7 +48,6 @@ jobs:
strategy:
matrix:
include: ${{ fromJSON(needs.scrub.outputs.json) }}
# include: [ {"package": "bitnami/postgresql", "major_tag": "12"}, {"package": "bitnami/postgresql", "major_tag": "13"}, {"package": "bitnami/postgresql", "major_tag": "14"}, {"package": "bitnami/postgresql", "major_tag": "15"}, {"package": "bitnami/postgresql", "major_tag": "16"} ]
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 26c4e08

Please sign in to comment.