We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1daa2 commit 52980c8Copy full SHA for 52980c8
.github/workflows/perltest.yml
@@ -30,8 +30,14 @@ jobs:
30
- run: cpanm File::ShareDir::Install
31
- run: cpanm --installdeps .
32
- run: prove -lv t
33
- - name: Archive CPAN logs
34
- if: ${{ failure() }}
+ - name: Archive CPAN logs on Windows
+ if: ${{ failure() }} && runner.os == 'Windows'
35
+ uses: actions/upload-artifact@v3
36
+ with:
37
+ name: cpan_log
38
+ path: $env:HOME\.cpanm\work\*\build.log
39
+ - name: Archive CPAN logs on non-Windows
40
+ if: ${{ failure() }} && runner.os != 'Windows'
41
uses: actions/upload-artifact@v3
42
with:
43
name: cpan_log
0 commit comments