Integration Allure report to Github Actions - IvanBezrukavyi/ts-playwright GitHub Wiki
Go to <your_profile> -> Settings -> Developer Settings -> Personal Access Token -> Tokens -> Generate it with such options
Go to <your_repo> -> Settings -> Actions -> Change workflow permission

Open your workflow.yml file and add this code snippet or investigate this wiki
`- name: Get Allure history
uses: actions/checkout@v2
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Allure Report action from marketplace
uses: simple-elf/allure-report-action@master
if: always()
#id: allure-report
with:
allure_results: allure-results
gh_pages: gh-pages
allure_report: allure-report
allure_history: allure-history
- name: Deploy report to Github Pages
if: always()
uses: peaceiris/actions-gh-pages@v2
env:
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: allure-history`



