fix: Update card.rs to use PluginConstants for last lettuce position #56
Workflow file for this run
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: convert readme | |
'on': | |
push: | |
tags: | |
- '*' | |
jobs: | |
convert: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: convert to rst | |
run: | | |
wget https://github.com/jgm/pandoc/releases/download/2.19.2/pandoc-2.19.2-1-amd64.deb | |
sudo dpkg -i pandoc-2.19.2-1-amd64.deb | |
pandoc README.md --from markdown -f gfm --to rst -s -o docs/index.rst | |
cat docs/appending >> docs/index.rst | |
- name: commit index.rst | |
run: | | |
git config --global user.name 'Falcon' | |
git config --global user.email '[email protected]' | |
git add docs/index.rst | |
git commit -m "docs: auto update index.rst" | |
git push | |
continue-on-error: true |