main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # This is a basic workflow to help you get started with Actions
  2. name: build-resume
  3. # Controls when the action will run.
  4. on:
  5. # Triggers the workflow on push or pull request events but only for the master branch
  6. push:
  7. branches: [ master ]
  8. paths:
  9. - 'markdown/**'
  10. # Allows you to run this workflow manually from the Actions tab
  11. workflow_dispatch:
  12. jobs:
  13. build-resume:
  14. runs-on: ubuntu-latest
  15. # services:
  16. # buildhost:
  17. # image: ghcr.io/mszep/pandoc_resume/resume_builder:latest
  18. # credentials:
  19. # username: ${{ github.actor }}
  20. # password: ${{ secrets.GITHUB_TOKEN }}
  21. # volumes:
  22. # - ${{ github.workspace }}:${{ github.workspace }}
  23. # ports:
  24. # - 32001:22
  25. steps:
  26. # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  27. - uses: actions/checkout@v2
  28. - name: Test directory contents
  29. run: 'ls -al'
  30. - name: Build resume
  31. uses: xu-cheng/latex-action@v2
  32. with:
  33. root_file: output/resume.txt
  34. compiler: mtxrun
  35. - name: Upload a Build Artifact
  36. uses: actions/upload-artifact@v2.2.3
  37. with:
  38. # Artifact name
  39. name: Resume PDF # optional, default is artifact
  40. # A file, directory or wildcard pattern that describes what to upload
  41. path: output/*.pdf