mirror of
				https://github.com/RetroDECK/RetroDECK.git
				synced 2025-04-10 19:15:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			677 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			677 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Update-ReadTheDocs
 | |
| 
 | |
| on:
 | |
|   gollum
 | |
|   # push:
 | |
|   #   branches:
 | |
|   #    - main
 | |
|   #   paths:
 | |
|   #    - 'wiki-rtd'
 | |
|   # pull_request: 
 | |
|   #   branches:
 | |
|   #    - main
 | |
|   #   paths:
 | |
|   #    - 'wiki-rtd'
 | |
|   # workflow_dispatch:
 | |
| 
 | |
| 
 | |
| jobs:
 | |
| 
 | |
|   Job1_-_Building_P1:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
| 
 | |
|       - uses: actions/checkout@v3
 | |
| 
 | |
|       - name: Update ReadTheDocs wiki-rtd
 | |
|         id: wiki-rtd-update
 | |
|         run: |
 | |
|           git checkout https://github.com/RetroDECK/RetroDECK.wiki-rtd.git tmp/wiki-rtd
 | |
|           cp -rf tmp/wiki-rtd/* wiki-rtd
 | |
|           rm wiki-rtd/index.md
 | |
|           mv wiki-rtd/Home.md wiki-rtd/index.md
 | |
|           git commit -m "Updating wiki-rtd"
 | |
|           git push           |