Skip to content

Commit

Permalink
Fix workflow review comment
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Jones <[email protected]>
  • Loading branch information
cjbj authored and Djelibeybi committed Jul 1, 2024
1 parent adbbc05 commit 5d32306
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-and-push-instantclient-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ jobs:
do
for i in ${{ steps.linux-version.outputs.ic }}
do
if [[ ${o} = "oraclelinux9" && ${i} != "19" ]]; then
if [[ ${o} = "oraclelinux7" && ${i} = "23" ]]; then
continue
fi
if [[ ${o} = "oraclelinux9" && ${i} = "21" ]]; then
continue
fi
docker build --tag ghcr.io/${{ steps.repo-owner.outputs.repo-owner }}/${o}-instantclient:${i} OracleInstantClient/${o}/${i}
Expand All @@ -101,7 +104,10 @@ jobs:
do
for i in ${{ steps.linux-version.outputs.ic }}
do
if [[ ${o} = 'oraclelinux9' && ${i} != '19' ]]; then
if [[ ${o} = "oraclelinux7" && ${i} = "23" ]]; then
continue
fi
if [[ ${o} = "oraclelinux9" && ${i} = "21" ]]; then
continue
fi
docker push ghcr.io/${{ steps.repo-owner.outputs.repo-owner }}/${o}-instantclient:${i}
Expand Down

0 comments on commit 5d32306

Please sign in to comment.