@@ -172,31 +172,31 @@ jobs:
172
172
uses : actions/upload-artifact@v4
173
173
with :
174
174
name : ' logs-${{ matrix.os }}'
175
- path : ' artifacts/logs/'
175
+ path : ' ${{ github.workspace }}/ artifacts/logs/'
176
176
- name : 🏺 Publish test data (${{ matrix.os }})
177
177
if : always()
178
178
uses : actions/upload-artifact@v4
179
179
with :
180
180
name : ' test data-${{ matrix.os }}'
181
- path : ' artifacts/test/'
181
+ path : ' ${{ github.workspace }}/ artifacts/test/'
182
182
- name : 🚀 Publish Test Results
183
183
if : always() && matrix.os == 'macos-latest'
184
184
uses : EnricoMi/publish-unit-test-result-action/macos@v2
185
185
with :
186
- files : ' artifacts/test/**/*.trx'
186
+ files : ' ${{ github.workspace }}/ artifacts/test/**/*.trx'
187
187
- name : 🏺 Publish coverage data (${{ matrix.os }})
188
188
if : always()
189
189
uses : actions/upload-artifact@v4
190
190
with :
191
191
name : ' coverage-${{ matrix.os }}'
192
- path : ' coverage/'
192
+ path : ' ${{ github.workspace }}/ coverage/'
193
193
- name : 🚀 Publish Coverage Comment
194
194
if : always() && github.event_name == 'pull_request'
195
195
continue-on-error : true
196
196
uses : marocchino/sticky-pull-request-comment@v2
197
197
with :
198
198
header : ' Coverage'
199
- path : ' coverage/summary/SummaryGithub.md'
199
+ path : ' ${{ github.workspace }}/ coverage/summary/SummaryGithub.md'
200
200
GITHUB_TOKEN : ' ${{ secrets.GITHUB_TOKEN }}'
201
201
- name : 🚀 Publish Codecov Coverage
202
202
if : always() && (github.event_name != 'pull_request' && github.event_name != 'pull_request_target') || ((github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]')
@@ -209,7 +209,7 @@ jobs:
209
209
uses : actions/upload-artifact@v4
210
210
with :
211
211
name : ' nuget-${{ matrix.os }}'
212
- path : ' artifacts/nuget/'
212
+ path : ' ${{ github.workspace }}/ artifacts/nuget/'
213
213
Merge :
214
214
runs-on : ubuntu-latest
215
215
needs : build
0 commit comments