-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -509,14 +509,15 @@ jobs: | |
# path: screenshot_*.png | ||
# retention-days: 30 | ||
|
||
# ${{ secrets.GITHUB_TOKEN }} is a GitHub Actions token that is automatically generated and used to authenticate with GitHub | ||
# Publish HTML report to GitHub Pages to host static HTML report | ||
- name: Publish HTML report to GitHub Pages | ||
continue-on-error: true | ||
if: always() # We want this to always run, even if test fail prior to this step running | ||
uses: peaceiris/[email protected] | ||
with: | ||
#github_token: ${{ secrets.github-accesstoken }} | ||
personal_token: ${{ secrets.personal-accesstoken }} | ||
github_token: ${{ secrets.github-accesstoken }} | ||
#personal_token: ${{ secrets.personal-accesstoken }} | ||
publish_branch: gh-pages | ||
publish_dir: playwright-report # This is where index.html will be output | ||
keep_files: true # Set this to true to make sure we don't wipe out the other content in GitHub Pages | ||
|