1 parent fe51832 commit af01d25Copy full SHA for af01d25
1 file changed
.github/workflows/playwright-tests.yml
@@ -198,6 +198,16 @@ jobs:
198
- test_chromium
199
- test_firefox
200
- test_webkit
201
+
202
+ # Prevent multiple deployments running at the same time
203
+ concurrency:
204
+ group: pages
205
+ cancel-in-progress: false
206
207
+ # Required for GitHub Pages deployment
208
+ environment:
209
+ name: github-pages
210
+ url: ${{ steps.deployment.outputs.page_url }}
211
212
steps:
213
- name: Checkout
@@ -224,6 +234,7 @@ jobs:
224
234
uses: actions/upload-pages-artifact@v3
225
235
with:
226
236
path: ./allure-report
237
+ retention-days: 1
227
238
228
239
- name: Deploy to GitHub Pages
229
240
id: deployment
0 commit comments