Last active
November 22, 2021 19:34
-
-
Save MarcusFelling/3219b99dc64937bedc4eda30e291a900 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
- name: Publish HTML report to testresults.marcusfelling.com | |
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_TOKEN }} | |
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 | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment