This commit is contained in:
snothub
2026-04-04 17:30:16 +02:00
parent f7897bc2bf
commit 97aeba8275
3 changed files with 41 additions and 1 deletions

35
.github/workflows/docs.yml vendored Normal file
View File

@@ -0,0 +1,35 @@
name: Deploy GitHub Pages
on:
push:
branches: [main]
paths:
- 'docs/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: './docs'
- id: deployment
uses: actions/deploy-pages@v4

1
.gitignore vendored
View File

@@ -6,7 +6,6 @@
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
.github/
private/
.helm/
temp/

6
.project-standards.yaml Normal file
View File

@@ -0,0 +1,6 @@
standards_version: "2025.1"
last_configured: "2026-04-04"
components:
github-pages: "2025.1"
github-pages-generator: "static"
github-pages-source: "docs/"