aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.github/workflows/build.yml
blob: 5accb38710e36a8f29cee978c780fd71b3f2e5aa (plain) (tree)
1
2
3
4
5
6
7
8
9








                    
                          



                                 
                   


                              
                                 

                                        
                  
                         
                                  
                      
                            
                                     



                                                        
                             
                                             
name: Build

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Build
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Build
        run: |
          docker-compose build
          docker-compose up
      - name: Publish as artifact
        uses: actions/upload-artifact@v2
        with:
          name: cv
          path: cv/cv.pdf
          if-no-files-found: error
      - name: Clean up
        run: sudo make clean
      - name: Publish to GitHub Pages
        uses: JamesIves/github-pages-deploy-action@4.1.0
        with:
          branch: gh-pages
          folder: cv
          single-commit: true
        if: github.ref == 'refs/heads/master'