We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97479ab commit 7885d65Copy full SHA for 7885d65
1 file changed
.github/workflows/build.yml
@@ -1,5 +1,8 @@
1
name: Build and deploy snapshot
2
3
+env:
4
+ DB_IMAGE: gvenzl/oracle-xe:11-full
5
+
6
on:
7
push:
8
branches: [ develop ]
@@ -13,17 +16,16 @@ jobs:
13
16
14
17
env:
15
18
UTPLSQL_VERSION: ${{matrix.utplsql-version}}
- DB_IMAGE: ${{matrix.db_image}}
19
20
runs-on: ubuntu-latest
21
strategy:
22
matrix:
23
utplsql-version: [develop, v3.0.0, v3.1.6, v3.1.11]
- db_image: gvenzl/oracle-xe:11-full
24
+ db_image: ${{env.DB_IMAGE}}
25
26
services:
27
oracle:
- image: ${{matrix.db_image}}
28
+ image: ${{env.db_image}}
29
30
ORACLE_PASSWORD: oracle
31
ports:
0 commit comments