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 @@ -103,6 +103,21 @@ runs:
103
103
-p:PublishReadyToRun=false \
104
104
-p:PublishTrimmed=false \
105
105
-p:Version=0.0.${{ github.run_number }}
106
+ - name : Build Parquet Extension
107
+ shell : bash
108
+ run : |
109
+ dotnet publish \
110
+ Extensions/Parquet/Cosmos.DataTransfer.ParquetExtension/Cosmos.DataTransfer.ParquetExtension.csproj \
111
+ --configuration Release \
112
+ --output ${{ inputs.platform-short }}/Extensions \
113
+ --self-contained false \
114
+ --runtime ${{ inputs.runtime }} \
115
+ -p:PublishSingleFile=false \
116
+ -p:DebugType=embedded \
117
+ -p:EnableCompressionInSingleFile=true \
118
+ -p:PublishReadyToRun=false \
119
+ -p:PublishTrimmed=false \
120
+ -p:Version=0.0.${{ github.run_number }}
106
121
- name : Upload package
107
122
uses : actions/upload-artifact@v3
108
123
with :
You can’t perform that action at this time.
0 commit comments