Skip to content

Commit 3be9df4

Browse files
committed
Adding new extension to build
1 parent 77a81c8 commit 3be9df4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/actions/build-with-plugins/action.yml

+15
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,21 @@ runs:
151151
-p:PublishReadyToRun=false \
152152
-p:PublishTrimmed=false \
153153
-p:Version=${{ inputs.build-version }}
154+
- name: Build PostgreSQL Extension
155+
shell: bash
156+
run: |
157+
dotnet publish \
158+
Extensions/PostgreSQL/Cosmos.DataTransfer.PostgresqlExtension.csproj \
159+
--configuration Release \
160+
--output ${{ inputs.platform-short }}/Extensions \
161+
--self-contained false \
162+
--runtime ${{ inputs.runtime }} \
163+
-p:PublishSingleFile=false \
164+
-p:DebugType=embedded \
165+
-p:EnableCompressionInSingleFile=true \
166+
-p:PublishReadyToRun=false \
167+
-p:PublishTrimmed=false \
168+
-p:Version=${{ inputs.build-version }}
154169
- name: Upload package
155170
uses: actions/upload-artifact@v3
156171
with:

0 commit comments

Comments
 (0)