Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico committed Jun 1, 2024
1 parent d1e7b18 commit b55a0ac
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,18 @@ jobs:
if: always() # We want this to always run, even if test fail prior to this step running
uses: actions/download-artifact@v4
with:
path: ./report
path: ./audits
pattern: audit-*
merge-multiple: true
- name: List files
run: ls -l ./report

publish-html:
runs-on: ubuntu-latest
needs: [ download-artifact ]
steps:
- name: List files
run: ls -l ./report
- name: Publish HTML report
- name: List files (debug)
run: |
pwd
ls -l ./audits
- name: Publish HTML/JSON audit reports
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./report
publish_dir: ./audits
keep_files: true
user_name: 'github-actions[bot]' # This will be the username that gets stamped in the repo commit
user_email: 'github-actions[bot]@users.noreply.github.com' # This will be the user email that gets stamped in the repo commit

0 comments on commit b55a0ac

Please sign in to comment.