mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 28d5cd1696
			
		
	
	
		28d5cd1696
		
			
		
	
	
	
	
		
			
			Bumps [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) from 4.4.2 to 4.4.3. - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.4.2...v4.4.3) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			47 lines
		
	
	
		
			968 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			968 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Generate Docs
 | |
| 
 | |
| permissions:
 | |
|   contents: write
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|     - master
 | |
|     paths:
 | |
|     - 'tmk_core/**'
 | |
|     - 'quantum/**'
 | |
|     - 'platforms/**'
 | |
|     - 'docs/**'
 | |
|     - '.github/workflows/docs.yml'
 | |
| 
 | |
| jobs:
 | |
|   generate:
 | |
|     runs-on: ubuntu-latest
 | |
|     container: ghcr.io/qmk/qmk_cli
 | |
| 
 | |
|     # protect against those who develop with their fork on master
 | |
|     if: github.repository == 'qmk/qmk_firmware'
 | |
| 
 | |
|     steps:
 | |
|     - uses: actions/checkout@v3
 | |
|       with:
 | |
|         fetch-depth: 1
 | |
| 
 | |
|     - name: Install dependencies
 | |
|       run: |
 | |
|         apt-get update && apt-get install -y rsync nodejs npm doxygen
 | |
|         npm install -g moxygen
 | |
| 
 | |
|     - name: Build docs
 | |
|       run: |
 | |
|         qmk --verbose generate-docs
 | |
| 
 | |
|     - name: Deploy
 | |
|       uses: JamesIves/github-pages-deploy-action@v4.4.3
 | |
|       with:
 | |
|         GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | |
|         BASE_BRANCH: master
 | |
|         BRANCH: gh-pages
 | |
|         FOLDER: .build/docs
 | |
|         GIT_CONFIG_EMAIL: hello@qmk.fm
 |