We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e611757 commit 590eeeaCopy full SHA for 590eeea
1 file changed
.github/workflows/github_actions_tests.yml
@@ -51,6 +51,13 @@ jobs:
51
echo "BASE_URL_FE=${BASE_URL_FE}" > .env
52
echo "BASE_URL_API=${BASE_URL_API}" > .env
53
54
+ - name: Download previous Allure report
55
+ run: |
56
+ git config --global user.email "github-actions@users.noreply.github.com"
57
+ git config --global user.name "GitHub Actions"
58
+ git clone --depth=1 --branch gh-pages https://github.com/${{ github.repository }} gh-pages || exit 0
59
+ mkdir -p allure-results/history
60
+ cp -R gh-pages/history allure-results/ || echo "No previous history"
61
62
- name: Run tests(UI & API) with Pytest
63
run: |
@@ -65,5 +72,7 @@ jobs:
65
72
uses: peaceiris/actions-gh-pages@v3
66
73
with:
67
74
github_token: ${{ secrets.GH_PAGES_ALLURE }}
75
+ publish_branch: gh_pages
68
76
publish_dir: ./allure-report
77
+
69
78
0 commit comments