added acls and telemed director #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Compilation status of CV.pdf | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: wtfjoke/setup-tectonic@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Tectonic | |
run: tectonic src.tex/Orleanski_Dmitri.CV.tex | |
- name: Upload pdf | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Orleanski_Dmitri.CV | |
path: src.tex/Orleanski_Dmitri.CV.pdf | |
- name: Update Release | |
# You may pin to the exact commit or the version. | |
# uses: johnwbyrd/update-release@1d5ec4791e40507e5eca3b4dbf90f0b27e7e4979 | |
uses: johnwbyrd/[email protected] | |
with: | |
# Your Github token; try \$\{\{ secrets.GITHUB_TOKEN \}\} if your build lasts less than an hour, or create your own secret token with repository access if your build requires longer than an hour. | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Paths to built files to be released. May be absolute or relative to \$\{\{ github.workspace \}\}. | |
files: src.tex/Orleanski_Dmitri.CV.pdf | |
# The name of the release to be created. A reasonable looking release name will be created from the current \$\{\{ github.ref \}\} if this input is not supplied. | |
release: Orleanski_Dmitri.CV.pdf # optional | |
# The name of the tag to be used. If not provided, the name of the release will be used. | |
tag: release # optional | |
# A one-line description for both the tag and the release. | |
message: latest CV # optional | |
# A fuller description of the release. | |
body: Latest curriculum Vitae # optional | |
# Should the release, if created, be marked as a prerelease? Such releases are generally publicly visible. | |
prerelease: false # optional, default is true | |
# Should the release, if created, be marked as a draft? Such releases are generally not publicly visible. | |
draft: false # optional |