main.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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:
  14. runs-on: ubuntu-latest
  15. container:
  16. image: ghcr.io/mszep/pandoc_resume/resume_builder:latest
  17. credentials:
  18. username: ${{ github.actor }}
  19. password: ${{ secrets.GITHUB_TOKEN }}
  20. steps:
  21. # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  22. - uses: actions/checkout@v2
  23. - name: Test directory contents
  24. run: ls -al
  25. - name: Build resume
  26. run: make
  27. - name: Upload a Build Artifact
  28. uses: actions/upload-artifact@v2.2.3
  29. with:
  30. # Artifact name
  31. name: Resume PDF # optional, default is artifact
  32. # A file, directory or wildcard pattern that describes what to upload
  33. path: output/*.pdf