Skip to content

Commit 59d06f6

Browse files
committed
chore: fix workflow event
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
1 parent 3740028 commit 59d06f6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/continuous-delivery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
echo "PG_IMAGE=$(echo "${BUILD_METADATA}" | jq -r '.["minimal"].["image.name"]' | grep -oP '[^,]*\d{12}[^,]*')" >> $GITHUB_ENV
9292
9393
call-reusable-e2e:
94-
if: github.event_name == 'schedule'
94+
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
9595
needs:
9696
- build-pg
9797
uses: ./.github/workflows/reusable-e2e.yml

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ RUN apt-get update && \
157157
cd /usr/src/address_standardizer && \
158158
make && \
159159
make install && \
160-
ln -s /usr/lib/x86_64-linux-gnu/postgresql/address_standardizer.so /usr/lib/x86_64-linux-gnu/postgresql/address_standardizer-3.so && \
160+
# ln -s /usr/lib/x86_64-linux-gnu/postgresql/address_standardizer.so /usr/lib/x86_64-linux-gnu/postgresql/address_standardizer-3.so && \
161161
# Cleanup
162162
apt-get purge -y --auto-remove $(cat /build-deps.txt) && \
163163
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && \

0 commit comments

Comments
 (0)