mirror of
https://github.com/alam00000/bentopdf.git
synced 2026-05-03 08:50:32 +00:00
0040317e48
- Canonicals/hreflang/og point to www.bentopdf.com everywhere - Drop fake aggregateRating; add Organization + breadcrumb JSON-LD - Sitemap: filter 404/wasm-settings, mtime-based lastmod - Rename locale ua → uk (correct ISO 639-1) - Self-hoster: SITE_URL build arg, ROBOTS_NOINDEX runtime env - Simple Mode indexable by default - nginx: collapse .html and /index.html via 301 - SEO audit script + PR gate; runtime config noise fixed - a11y contrast fix; language switcher gets search + scroll - robots.txt: drop Crawl-delay
68 lines
1.9 KiB
YAML
68 lines
1.9 KiB
YAML
# 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"]
|
|
|
|
# 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 only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: false
|
|
|
|
|
|
# Configure these variables under your repo settings.
|
|
# You will likely need to set BASE_URL to be the name of your repo eg 'bentopdf'
|
|
env:
|
|
SIMPLE_MODE: ${{ vars.SIMPLE_MODE }}
|
|
BASE_URL: ${{ vars.BASE_URL }}/
|
|
SITE_URL: ${{ vars.SITE_URL }}
|
|
HUSKY: 0
|
|
|
|
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@v4
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "20"
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Build distribution
|
|
run: |
|
|
# export SIMPLE_MODE=${{ vars.SIMPLE_MODE }}
|
|
# export BASE_URL=${{ vars.BASE_URL }}/
|
|
npm run build
|
|
|
|
- name: Setup Pages
|
|
uses: actions/configure-pages@v5
|
|
- name: Upload artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
# Upload entire repository
|
|
path: dist
|
|
name: github-pages-deployment
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|
|
with:
|
|
artifact_name: github-pages-deployment
|