diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab2c670..b5afd8f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,9 +62,6 @@ jobs: retention-days: 1 if-no-files-found: error - - name: Rebuild site CSS - run: npx tailwindcss@3 -i site/input.css -o site/output.css --minify - - name: Show diff (dry run) if: ${{ inputs.dry_run }} run: git --no-pager diff @@ -245,7 +242,7 @@ jobs: cat > tap/Formula/termscp.rb <[0-9][0-9A-Za-z.\\-]*#$VERSION#" "$ROOT/dist/chocolatey/termscp.nuspec" diff --git a/site/src/components/Footer.astro b/site/src/components/Footer.astro index 738a43e..375ddae 100644 --- a/site/src/components/Footer.astro +++ b/site/src/components/Footer.astro @@ -1,5 +1,5 @@ --- -import { DOCS_URL, GITHUB_URL } from "../consts"; +import { DOCS_URL, GITHUB_URL, VERSION } from "../consts"; const year = new Date().getFullYear(); --- diff --git a/site/src/consts.ts b/site/src/consts.ts index a0bef96..67b2d1c 100644 --- a/site/src/consts.ts +++ b/site/src/consts.ts @@ -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";