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

@@ -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 <<EOF
class Termscp < Formula
desc "A feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP/S3/Kube/SMB/WebDAV"
homepage "https://termscp.veeso.dev/"
homepage "https://termscp.rs/"
license "MIT"
version "$VERSION"

View File

@@ -1,46 +0,0 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths:
- ".github/workflows/website.yml"
- "site/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
persist-credentials: false
- name: Setup Pages
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
- name: Upload artifact
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
with:
path: "./site/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4