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
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_MARIADB_MASTER }}" ]; then
16
-
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_MARIADB_MASTER is set; skipping trigger. ****"
15
+
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_MARIADB_ALPINE }}" ]; then
16
+
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_MARIADB_ALPINE is set; skipping trigger. ****"
17
17
exit 0
18
18
fi
19
-
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_MARIADB_MASTER\". ****"
19
+
echo "**** External trigger running off of alpine branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_MARIADB_ALPINE\". ****"
20
20
echo "**** Retrieving external version ****"
21
-
EXT_RELEASE=$(curl -sX GET http://mirror.rackspace.com/mariadb/repo/10.4/ubuntu/dists/bionic/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: mariadb-server' | awk -F ': ' '/Version/{print $2;exit}')
21
+
EXT_RELEASE=$(docker run --rm alpine:3.13 sh -c 'apk update --quiet --repository '"http://dl-cdn.alpinelinux.org/alpine/v3.13/main/"'\
0 commit comments