diff --git a/.github/actions/build-with-plugins/action.yml b/.github/actions/build-with-plugins/action.yml index 9aa8f88..f68a76d 100644 --- a/.github/actions/build-with-plugins/action.yml +++ b/.github/actions/build-with-plugins/action.yml @@ -151,6 +151,21 @@ runs: -p:PublishReadyToRun=false \ -p:PublishTrimmed=false \ -p:Version=${{ inputs.build-version }} + - name: Build PostgreSQL Extension + shell: bash + run: | + dotnet publish \ + Extensions/PostgreSQL/Cosmos.DataTransfer.PostgresqlExtension.csproj \ + --configuration Release \ + --output ${{ inputs.platform-short }}/Extensions \ + --self-contained false \ + --runtime ${{ inputs.runtime }} \ + -p:PublishSingleFile=false \ + -p:DebugType=embedded \ + -p:EnableCompressionInSingleFile=true \ + -p:PublishReadyToRun=false \ + -p:PublishTrimmed=false \ + -p:Version=${{ inputs.build-version }} - name: Upload package uses: actions/upload-artifact@v3 with: