chore(deps): update tj-actions/verify-changed-files action to v20 #475
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: Sync doc assets | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-doc-assets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Run test | |
uses: tj-actions/remark@v3 | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@v20 | |
id: verify_changed_files | |
with: | |
files: | | |
README.md | |
- name: README.md changed | |
if: steps.verify_changed_files.outputs.files_changed == 'true' | |
run: | | |
echo "README.md has uncommited changes" | |
exit 1 | |
- name: Create Pull Request | |
if: failure() | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
base: "main" | |
title: "Updated README.md" | |
branch: "chore/update-readme" | |
commit-message: "Updated README.md" | |
body: "Updated README.md" | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Copy doc assets | |
run: | | |
sed 's|./docs/images|./images|g' README.md > docs/README.md | |
cp -f CHANGELOG.md docs/CHANGELOG.md | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10.x' | |
- name: Upgrade pip | |
run: | | |
pip install -U pip | |
- name: Install dependencies | |
run: make install-docs | |
- name: Deploy to github pages | |
run: | | |
make github-pages |