mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Build documentation
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: read
 | 
						|
  pages: write
 | 
						|
  id-token: write
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Checkout repository
 | 
						|
        uses: actions/checkout@v4
 | 
						|
      - name: Install python
 | 
						|
        uses: actions/setup-python@v4
 | 
						|
        with:
 | 
						|
          python-version: 3.x
 | 
						|
      - name: Setup cache
 | 
						|
        uses: actions/cache@v2
 | 
						|
        with:
 | 
						|
          key: ${{ github.ref }}
 | 
						|
          path: .cache
 | 
						|
      - name: Setup dependencies
 | 
						|
        run: pip install -r docs/requirements.txt
 | 
						|
      - name: Build docs
 | 
						|
        run: mkdocs build --strict
 | 
						|
      - name: Upload artifact
 | 
						|
        uses: actions/upload-pages-artifact@v3
 | 
						|
        with:
 | 
						|
          path: ./site
 | 
						|
 | 
						|
  deploy:
 | 
						|
    environment:
 | 
						|
      name: github-pages
 | 
						|
      url: ${{ steps.deployment.outputs.page_url }}
 | 
						|
    permissions:
 | 
						|
      pages: write
 | 
						|
      id-token: write
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    needs: build
 | 
						|
    steps:
 | 
						|
      - name: Configure Pages
 | 
						|
        uses: actions/configure-pages@v4
 | 
						|
      - name: Deploy to GitHub Pages
 | 
						|
        id: deployment
 | 
						|
        uses: actions/deploy-pages@v4
 |