Skip to content

Commit

Permalink
Add renovate to pandoc
Browse files Browse the repository at this point in the history
  • Loading branch information
twangboy committed Nov 15, 2024
1 parent 14c8ba2 commit dc41443
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pandoc.sls
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
{%- load_yaml as versions %}
# renovate: datasource=github-releases depName=pandoc packageName=jgm/pandoc
- 1.17.0.2
{%- endload%}
pandoc:
'1.17.0.2':
full_name: 'Pandoc 1.17.0.2'
installer: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'
{%- for version in versions %}
'{{ version }}':
full_name: 'Pandoc {{ version }}'
installer: 'https://github.com/jgm/pandoc/releases/download/{{ version }}/pandoc-{{ version }}-windows.msi'
install_flags: '/qn ALLUSERS=1 /norestart'
uninstaller: 'https://github.com/jgm/pandoc/releases/download/1.17.0.2/pandoc-1.17.0.2-windows.msi'
uninstaller: 'https://github.com/jgm/pandoc/releases/download/{{ version }}/pandoc-{{ version }}-windows.msi'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
{%- endfor %}

0 comments on commit dc41443

Please sign in to comment.