Skip to content

Commit

Permalink
Adding new extension to build
Browse files Browse the repository at this point in the history
  • Loading branch information
bowencode committed Mar 29, 2024
1 parent 77a81c8 commit 3be9df4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/actions/build-with-plugins/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3be9df4

Please sign in to comment.