screenshots ci actions #299
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: screenshots ci actions | |
on: | |
workflow_run: | |
workflows: ["pages-build-deployment"] | |
types: | |
- completed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
screenshots: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove old screenshots first | |
run: rm -rd screenshots | |
- name: install puppeteer-headful | |
uses: mujo-code/puppeteer-headful@master | |
env: | |
CI: 'true' | |
- name: screenshots-ci-action | |
uses: flameddd/screenshots-ci-action@master | |
with: | |
url: https://michaeltroger.com | |
devices: iPhone 13 | |
- name: Keep only few screenshots | |
run: | | |
mv screenshots screenshots_generated | |
mkdir screenshots | |
cp screenshots_generated/iPhone* screenshots/IPhone.jpeg | |
cp screenshots_generated/desktopPage1920x1080* screenshots/desktopPage.jpeg | |
rm -rd screenshots_generated | |
- name: Create screenshot pull request if on master branch | |
uses: peter-evans/create-pull-request@v6 | |
if: github.ref == 'refs/heads/master' | |
with: | |
branch: feature/update_screenshots | |
title: Update of screenshots | |
commit-message: Update of screenshots | |
add-paths: | | |
screenshots/* |