ci: remove pages workflow, fix release version-bump for astro site

This commit is contained in:
Christian Visintin
2026-06-07 22:32:31 +02:00
parent d7b7ab7fa1
commit 6cf5bf18cf
5 changed files with 6 additions and 61 deletions

View File

@@ -1,5 +1,5 @@
---
import { DOCS_URL, GITHUB_URL } from "../consts";
import { DOCS_URL, GITHUB_URL, VERSION } from "../consts";
const year = new Date().getFullYear();
---
<footer class="mt-auto border-t border-line bg-mantle">
@@ -9,6 +9,6 @@ const year = new Date().getFullYear();
<a href="https://crates.io/crates/termscp" class="hover:text-text">crates.io</a>
<a href={DOCS_URL} class="hover:text-text">User manual</a>
</div>
<p>© {year} Christian Visintin · Released under the MIT license.</p>
<p>termscp v{VERSION} · © {year} Christian Visintin · Released under the MIT license.</p>
</div>
</footer>

View File

@@ -1,2 +1,3 @@
export const DOCS_URL = "https://docs.termscp.rs";
export const GITHUB_URL = "https://github.com/veeso/termscp";
export const VERSION = "1.0.0";