Skip to content

Add translations for the search button #85

Add translations for the search button

Add translations for the search button #85

Workflow file for this run

name: Render Dotfiles
on:
push:
paths:
- vignettes/articles/img/*dot
- .github/workflows/update-docs.yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Convert and commit dotfiles to svg
run: |
cd vignettes/articles/img
for i in *.dot; do dot -Tsvg $i > $i.svg; done
cd ${{ github.workspace }}
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add vignettes/articles/img/*.svg
git commit -m "[actions] update images" || echo "nothing to commit"
git push || echo "nothing to push"