-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,16 +23,16 @@ jobs: | |
run: | | ||
sudo apt-get install -y pandoc texlive-xetex | ||
- name: Convert Markdown to PDF | ||
- name: Convert Markdown to SVG | ||
run: | | ||
pandoc TODO.md -o todo-list.pdf | ||
pandoc TODO.md -o TODO.svg | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add todo-list.pdf | ||
git commit -m "Update TODO list PDF" | ||
git add TODO.svg | ||
git commit -m "Update TODO.svg" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
|