Screenshot Website #276
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: Screenshot Website | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
screenshot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install playwright browsers | |
run: npx playwright install --with-deps | |
# - name: Get github pages URL | |
# id: pages_url | |
# run: | | |
# REPO_NAME=$(echo "${{ github.repository }}" | awk -F'/' '{print $2}') | |
# echo "::set-output name=url::https://${{ github.repository_owner }}.github.io/$REPO_NAME/" | |
- name: Generate screenshot | |
id: "screenshot" | |
uses: natainditama/screen-snap@main | |
with: | |
# url: "${{ steps.pages_url.outputs.url }}" | |
url: "https://github.com/${{ github.repository }}" | |
fileName: ".github/screnshot.png" | |
- name: Commit changes | |
# Only run this step if screenshot path is not empty | |
if: steps.screenshot.outputs.path != '' | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "docs: update ${{ steps.screenshot.outputs.path }}" | |
add: "${{ steps.screenshot.outputs.path }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |