Trigger automatic screenshot artifact ingestion

This commit is contained in:
Henning Dieterichs
2026-04-01 11:03:55 +02:00
committed by Henning Dieterichs
parent 701662a562
commit bd5138e608

View File

@@ -61,6 +61,17 @@ jobs:
name: screenshots
path: test/componentFixtures/.screenshots/current/
- name: Trigger ingestion
run: |
curl -sS -X POST "https://hediet-screenshots.azurewebsites.net/ingest" \
-H "Content-Type: application/json" \
-d '{
"owner": "${{ github.repository_owner }}",
"repo": "${{ github.event.repository.name }}",
"runId": ${{ github.run_id }},
"artifactName": "screenshots"
}'
# - name: Compare screenshots
# id: compare
# run: |