We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adbbc05 commit 5d32306Copy full SHA for 5d32306
.github/workflows/build-and-push-instantclient-images.yml
@@ -88,7 +88,10 @@ jobs:
88
do
89
for i in ${{ steps.linux-version.outputs.ic }}
90
91
- if [[ ${o} = "oraclelinux9" && ${i} != "19" ]]; then
+ if [[ ${o} = "oraclelinux7" && ${i} = "23" ]]; then
92
+ continue
93
+ fi
94
+ if [[ ${o} = "oraclelinux9" && ${i} = "21" ]]; then
95
continue
96
fi
97
docker build --tag ghcr.io/${{ steps.repo-owner.outputs.repo-owner }}/${o}-instantclient:${i} OracleInstantClient/${o}/${i}
@@ -101,7 +104,10 @@ jobs:
101
104
102
105
103
106
- if [[ ${o} = 'oraclelinux9' && ${i} != '19' ]]; then
107
108
109
110
111
112
113
docker push ghcr.io/${{ steps.repo-owner.outputs.repo-owner }}/${o}-instantclient:${i}
0 commit comments