File tree 1 file changed +15
-0
lines changed
.github/actions/build-with-plugins
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,21 @@ runs:
151
151
-p:PublishReadyToRun=false \
152
152
-p:PublishTrimmed=false \
153
153
-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 }}
154
169
- name : Upload package
155
170
uses : actions/upload-artifact@v3
156
171
with :
You can’t perform that action at this time.
0 commit comments