1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # This is a basic workflow to help you get started with Actions
- name: build-resume
- # Controls when the action will run.
- on:
- # Triggers the workflow on push or pull request events but only for the master branch
- push:
- branches: [ master ]
- paths:
- - 'markdown/**'
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
- jobs:
- build-resume:
- runs-on: ubuntu-latest
- # services:
- # buildhost:
- # image: ghcr.io/mszep/pandoc_resume/resume_builder:latest
- # credentials:
- # username: ${{ github.actor }}
- # password: ${{ secrets.GITHUB_TOKEN }}
- # volumes:
- # - ${{ github.workspace }}:${{ github.workspace }}
- # ports:
- # - 32001:22
- steps:
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- - uses: actions/checkout@v2
-
- - name: Test directory contents
- run: 'ls -al'
- - name: Build resume
- uses: xu-cheng/latex-action@v2
- with:
- root_file: output/resume.txt
- compiler: mtxrun
- - name: Upload a Build Artifact
- uses: actions/upload-artifact@v2.2.3
- with:
- # Artifact name
- name: Resume PDF # optional, default is artifact
- # A file, directory or wildcard pattern that describes what to upload
- path: output/*.pdf
|