add json file for version check
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ash Keel 2023-11-12 02:19:54 +01:00
parent 828e2a89c0
commit 2e015ddbb4
No known key found for this signature in database
GPG Key ID: 53A9E9A6035DD109
3 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,4 @@
baseURL = 'https://strimertul.github.io/'
baseURL = 'https://strimertul.stream/'
languageCode = 'en-us'
title = 'strimertül | Free & open source broadcasting suite'
theme = 'strimertul'
theme = 'strimertul'

6
content/update.md Normal file
View File

@ -0,0 +1,6 @@
---
outputs:
- json
layout: update
url: /update.json
---

View File

@ -0,0 +1 @@
{{ $releases := where .Site.RegularPages "Section" "releases" }}{{ $stable := where $releases "Params.prerelease" false }}{{ $latest := index $releases 0 }}{{ $latest_stable := index $stable 0 }}{{ dict "stable" (dict "name" $latest_stable.Title "url" $latest_stable.Permalink) "latest" (dict "name" $latest.Title "url" $latest.Permalink) | jsonify }}