diff --git a/.github/workflows/generate_allure_report.yaml b/.github/workflows/generate_allure_report.yaml index 59b104a..26d0039 100644 --- a/.github/workflows/generate_allure_report.yaml +++ b/.github/workflows/generate_allure_report.yaml @@ -1,9 +1,6 @@ name: Run Python tests and generate Allure report -on: - push: - branches: - - gh-pages # Adjust this as necessary for your project +on: [push] jobs: test: @@ -46,7 +43,7 @@ jobs: if: always() with: allure_results: allure-results - allure_history: gh-pages/allure-history + allure_history: allure-results gh_pages: true - name: Publish Allure report on GitHub Pages @@ -55,4 +52,4 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_branch: gh-pages - publish_dir: gh-pages + publish_dir: allure-history