You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/external_trigger.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ jobs:
20
20
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_MARIADB_MASTER\". ****"
21
21
echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_MARIADB_MASTER\`" >> $GITHUB_STEP_SUMMARY
22
22
echo "**** Retrieving external version ****"
23
-
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.19/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
23
+
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
24
24
&& awk '/^P:'"mariadb"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
25
25
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
- { tag: "latest", desc: "Latest mariadb release with an Alpine base." }
20
-
21
16
# container parameters
22
17
common_param_env_vars_enabled: true
23
18
param_container_name: "{{ project_name }}"
24
-
param_usage_include_net: false
19
+
25
20
param_usage_include_env: true
26
21
param_env_vars:
27
22
- { env_var: "MYSQL_ROOT_PASSWORD", env_value: "ROOT_ACCESS_PASSWORD", desc: "Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped)." }
28
-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
- { external_port: "3306", internal_port: "3306", port_desc: "Mariadb listens on this port." }
35
-
param_device_map: false
36
-
cap_add_param: false
37
30
38
31
# optional container parameters
39
32
opt_param_usage_include_env: true
@@ -42,11 +35,6 @@ opt_param_env_vars:
42
35
- { env_var: "MYSQL_USER", env_value: "MYSQL_USER", desc: "This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here)." }
43
36
- { env_var: "MYSQL_PASSWORD", env_value: "DATABASE_PASSWORD", desc: "Set this to the password you want to use for you MYSQL_USER (minimum 4 characters & non-alphanumeric passwords must be properly escaped)." }
44
37
- { env_var: "REMOTE_SQL", env_value: "http://URL1/your.sql,https://URL2/your.sql", desc: "Set this to ingest sql files from an http/https endpoint (comma seperated array)." }
45
-
opt_param_usage_include_vols: false
46
-
opt_param_usage_include_ports: false
47
-
opt_param_device_map: false
48
-
opt_cap_add_param: false
49
-
optional_block_1: false
50
38
51
39
# application setup block
52
40
app_setup_block_enabled: true
@@ -116,6 +104,7 @@ app_setup_block: |
116
104
117
105
# changelog
118
106
changelogs:
107
+
- { date: "31.05.24:", desc: "Rebase to Alpine 3.20."}
119
108
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
120
109
- { date: "09.06.23:", desc: "Update lc_messages path in shipped custom.cnf to match upstream." }
0 commit comments