We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a9d65d commit 537dc6eCopy full SHA for 537dc6e
1 file changed
.github/workflows/ci.yml
@@ -123,11 +123,13 @@ jobs:
123
- name: Prepare package
124
if: ${{ matrix.configuration == 'Release' }}
125
run: >
126
- dotnet publish --no-build --verbosity normal
+ dotnet publish ${{ env.PRODUCT_NAME }}.csproj --no-build
127
--configuration ${{ matrix.configuration }}
128
+ -p:BaseOutputPath="${{ env.OUTPUT_PATH }}"
129
-p:PublishDir=${{ env.PUBLISH_PATH }}
130
131
- name: list
132
+ if: ${{ matrix.configuration == 'Release' }}
133
run: |
134
cd ${{ env.PUBLISH_PATH }}
135
ls
0 commit comments