Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make wrappers project part of workspace #143

Merged
merged 11 commits into from
Jan 16, 2024
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

# Extension version and path
extension_version=${{ github.ref_name }}
extension_dir=target/release/${{ matrix.extension_name }}-pg${{ matrix.postgres }}/usr/share/postgresql/${{ matrix.postgres }}/extension
extension_dir=../target/release/${{ matrix.extension_name }}-pg${{ matrix.postgres }}/usr/share/postgresql/${{ matrix.postgres }}/extension
# strip the leading v
deb_version=${extension_version:1}

Expand All @@ -106,7 +106,7 @@ jobs:

# Create installable package
mkdir archive
cp `find target/release -type f -name "${{ matrix.extension_name }}*"` archive
cp `find ../target/release -type f -name "${{ matrix.extension_name }}*"` archive

# name of the package directory before packaging
package_dir=${{ matrix.extension_name }}-${{ github.ref_name }}-pg${{ matrix.postgres }}-${{ matrix.box.arch }}-linux-gnu
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"rust-analyzer.cargo.features": ["all_fdws,helloworld_fdw"]
}
Loading
Loading