diff options
| author | David Cole <40234707+DavidArthurCole@users.noreply.github.com> | 2024-10-26 04:37:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-26 19:37:28 +1100 |
| commit | 742d175b2f9d103e7af8adf2aee11882be3107b8 (patch) | |
| tree | a46d1f7abc2fb64bab3886f12a4f3f99fb3e9b55 | |
| parent | c84af157a6c82ac25baf60431e1e839bc58fb517 (diff) | |
| download | SkyHanni-742d175b2f9d103e7af8adf2aee11882be3107b8.tar.gz SkyHanni-742d175b2f9d103e7af8adf2aee11882be3107b8.tar.bz2 SkyHanni-742d175b2f9d103e7af8adf2aee11882be3107b8.zip | |
Backend Fix: Detekt Artifact not Uploading (#2822)
| -rw-r--r-- | .github/workflows/detekt.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/detekt.yml b/.github/workflows/detekt.yml index 97909596a..a258661f1 100644 --- a/.github/workflows/detekt.yml +++ b/.github/workflows/detekt.yml @@ -43,7 +43,7 @@ jobs: chmod +x .github/scripts/process_detekt_sarif.sh ./.github/scripts/process_detekt_sarif.sh versions/1.8.9/build/reports/detekt/main.sarif | tee detekt_output.txt - name: Upload detekt output as artifact - if: ${{ steps.check_sarif.outputs.exists == 'true' }} + if: ${{ !cancelled() && steps.check_sarif.outputs.exists == 'true' }} uses: actions/upload-artifact@v4 with: name: detekt-output |
