Skip to content

Commit 9a545d0

Browse files
committed
Fix
1 parent 25ae817 commit 9a545d0

File tree

1 file changed

+3
-2
lines changed
  • .github/actions/reports-group/codacy-uploader

1 file changed

+3
-2
lines changed

.github/actions/reports-group/codacy-uploader/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ runs:
8383
script: |
8484
core.setFailed('Unable to retrieve any report to upload. Something wrong most likely happened !');
8585
86-
- name: TMP - remove repository used for custom action # Might interfere with Codacy, so to check
86+
- name: TMP - create an empty workspace # Repository used for custom action might interfere with Codacy, so to check
8787
shell: bash
88-
run: rm -Rf custom-action-repo
88+
run: mkdir empty-codacy-workspace
8989

9090
- name: Upload to codacy
9191
id: upload
@@ -96,6 +96,7 @@ runs:
9696
with:
9797
coverage-reports: ${{ steps.build-uploader-options.outputs.coverage-reports }}
9898
project-token: ${{ inputs.project-token }}
99+
working-directory: ./empty-codacy-workspace # TMP
99100

100101
- name: Build action outputs
101102
id: build-outputs

0 commit comments

Comments
 (0)