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 9db3225 commit 8983040Copy full SHA for 8983040
.github/workflows/buildsite.yml
@@ -32,16 +32,15 @@ jobs:
32
git add docs/
33
if [ "$GIT_STATUS" != "" ]; then git commit -m "Web site generation"; fi
34
if [ "$GIT_STATUS" != "" ]; then git push; fi
35
- - name: Copy cpanm logs
+ - name: Copy cpanm log
36
if: ${{ failure() }}
37
run: |
38
- mkdir -p .cpanm/work
39
- sudo cp -r /root/.cpanm/work .cpanm/work
40
- sudo chmod -R a+r .cpanm
+ sudo cp -r /root/.cpanm/work/*/build.log build.log
+ sudo chmod -R 666 build.log
41
- name: Archive CPAN logs
42
43
uses: actions/upload-artifact@v2
44
with:
45
name: cpan_log
46
- path: .cpanm/work/*/build.log
+ path: build.log
47
retention-days: 2
0 commit comments