diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..23f98f4 --- /dev/null +++ b/.github/workflows/docs.yml @@ -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 diff --git a/.gitignore b/.gitignore index c10a0fd..61960a7 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,6 @@ # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs -.github/ private/ .helm/ temp/ diff --git a/.project-standards.yaml b/.project-standards.yaml new file mode 100644 index 0000000..371611a --- /dev/null +++ b/.project-standards.yaml @@ -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/"