Skip to content

Commit c54a639

Browse files
authored
Merge pull request #291 from kalamdb/hotfixes/manifest
Fixed failing workflows in github actions
2 parents 7196ac5 + 6a6a9dc commit c54a639

5 files changed

Lines changed: 78 additions & 56 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,11 @@ jobs:
10681068
-e PG_EXTENSION_FLAVOR \
10691069
pg-kalam-builder-x86 \
10701070
bash -c '
1071-
cd /src && \
1071+
WORKDIR=/tmp/kalamdb-src && \
1072+
rm -rf "$WORKDIR" && \
1073+
mkdir -p "$WORKDIR" && \
1074+
cp -a /src/. "$WORKDIR"/ && \
1075+
cd "$WORKDIR" && \
10721076
cargo pgrx install \
10731077
-p kalam-pg-extension \
10741078
-c "/usr/lib/postgresql/${PG_EXTENSION_MAJOR}/bin/pg_config" \

0 commit comments

Comments
 (0)