File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
ansible/files/admin_api_scripts Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 45
45
- run : docker context create builders
46
46
- uses : docker/setup-buildx-action@v2
47
47
with :
48
- endpoint : builders
48
+ endpoint : builders
49
49
- uses : docker/build-push-action@v3
50
50
with :
51
51
push : false
57
57
platforms : linux/${{ matrix.arch }}
58
58
cache-from : type=gha
59
59
cache-to : type=gha,mode=max
60
+
60
61
- name : Extract built packages
61
62
run : |
62
63
mkdir -p /tmp/extensions ansible/files/extensions
Original file line number Diff line number Diff line change 7
7
8
8
set -eEuo pipefail
9
9
10
+ SCRIPT_DIR=$( dirname -- " $0 " ; )
10
11
# shellcheck disable=SC1091
11
- source . /pg_upgrade_common.sh
12
+ source " $SCRIPT_DIR /pg_upgrade_common.sh"
12
13
13
14
LOG_FILE=" /tmp/pg-upgrade-complete.log"
14
15
Original file line number Diff line number Diff line change @@ -27,8 +27,9 @@ PG13_EXTENSIONS_TO_DISABLE=(
27
27
28
28
set -eEuo pipefail
29
29
30
+ SCRIPT_DIR=$( dirname -- " $0 " ; )
30
31
# shellcheck disable=SC1091
31
- source . /pg_upgrade_common.sh
32
+ source " $SCRIPT_DIR /pg_upgrade_common.sh"
32
33
33
34
LOG_FILE=" /var/log/pg-upgrade-initiate.log"
34
35
You can’t perform that action at this time.
0 commit comments