mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 02:12:49 +01:00 
			
		
		
		
	add workflow,
* dunno why it doesm't build even if branch is mentioned on master's workflow
This commit is contained in:
		
							
								
								
									
										37
									
								
								.github/workflows/gh-pages.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								.github/workflows/gh-pages.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,37 @@
 | 
			
		||||
name: Build GH-Pages
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches:
 | 
			
		||||
      - exampleSite
 | 
			
		||||
  workflow_dispatch:
 | 
			
		||||
    # manual run
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  deploy:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Git checkout
 | 
			
		||||
        uses: actions/checkout@v2
 | 
			
		||||
        with:
 | 
			
		||||
          ref: exampleSite
 | 
			
		||||
 | 
			
		||||
      - name: Get Theme
 | 
			
		||||
        run: git submodule update --init --recursive
 | 
			
		||||
 | 
			
		||||
      - name: Update theme to Latest commit
 | 
			
		||||
        run: git submodule update --remote --merge
 | 
			
		||||
 | 
			
		||||
      - name: Setup hugo
 | 
			
		||||
        uses: peaceiris/actions-hugo@v2
 | 
			
		||||
        with:
 | 
			
		||||
          hugo-version: 'latest'
 | 
			
		||||
 | 
			
		||||
      - name: Build
 | 
			
		||||
        run: hugo --buildDrafts --gc --verbose --minify
 | 
			
		||||
 | 
			
		||||
      - name: Deploy
 | 
			
		||||
        uses: peaceiris/actions-gh-pages@v3
 | 
			
		||||
        with:
 | 
			
		||||
          github_token: ${{ secrets.TOKEN }}
 | 
			
		||||
          publish_dir: ./public
 | 
			
		||||
		Reference in New Issue
	
	Block a user