Skip to content

Commit

Permalink
goneovim-nightly: Fix checkver (#618)
Browse files Browse the repository at this point in the history
* goneovim-nightly: Fix version

* Workaround for datetime being converted to en-US

Co-authored-by: tech189 <dlloyd189@gmail.com>
  • Loading branch information
shiena and tech189 authored Sep 4, 2022
1 parent 46a4a3a commit 5beb9c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bucket/goneovim-nightly.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "nightly-1-gccee4b8",
"version": "nightly-20220830",
"description": "Neovim GUI which uses a Golang Qt backend",
"homepage": "https://github.com/akiyosi/goneovim",
"license": "MIT",
Expand All @@ -22,9 +22,9 @@
],
"checkver": {
"url": "https://api.github.com/repos/akiyosi/goneovim/releases/tags/nightly",
"jsonpath": "$.target_commitish",
"regex": "([0-9a-f]{7}).*",
"replace": "nightly-1-g${1}"
"jsonpath": "$.assets[?(@.name=='goneovim-windows.zip')]",
"regex": "updated_at.*(?<year>\\d{4})\\D(?<month>\\d{2})\\D(?<day>\\d{2})",
"replace": "nightly-${year}${month}${day}"
},
"autoupdate": {
"architecture": {
Expand Down

0 comments on commit 5beb9c1

Please sign in to comment.