Skip to content

Commit

Permalink
Adding latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed Oct 16, 2024
1 parent 87a5338 commit 0eec8f3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/install-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,21 @@ jobs:
exit 1
fi
- name: Install wkhtmltopdf
run: |
sudo apt-get update
sudo apt-get install -y wkhtmltopdf
- name: Capture screenshot
run: |
wkhtmltoimage http://127.0.0.1:8000 homepage_screenshot.png
- name: Upload screenshot as artifact
uses: actions/upload-artifact@v2
with:
name: homepage-screenshot
path: homepage_screenshot.png

- name: Stop Laravel server
if: always()
run: kill $(cat project_folder/laravel_server.pid)

0 comments on commit 0eec8f3

Please sign in to comment.