Skip to content

Commit

Permalink
docs: fix archive version url to include v prefix (#10111)
Browse files Browse the repository at this point in the history
* docs: fix archive version url to include v prefix

* docs: fix archived versions to add missing v to 1.106.1
  • Loading branch information
zackpollard committed Jun 11, 2024
1 parent b5991c9 commit 8a86629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/static/archived-versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"label": "1.106.1",
"url": "https://1.106.1.archive.immich.app"
"url": "https://v1.106.1.archive.immich.app"
},
{
"label": "v1.105.1",
Expand Down
2 changes: 1 addition & 1 deletion misc/release/archive-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (!lastVersion) {
const filename = './docs/static/archived-versions.json';
const oldVersions = JSON.parse(readFileSync(filename));
const newVersions = [
{ label: lastVersion, url: `https://${lastVersion}.archive.immich.app` },
{ label: lastVersion, url: `https://v${lastVersion}.archive.immich.app` },
...oldVersions,
];

Expand Down

0 comments on commit 8a86629

Please sign in to comment.