Update publications #68
This file contains hidden or 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
| name: Publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: # Allows manual triggering of the workflow | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: docker://arkark/latexmk | |
| with: | |
| args: latexmk -pdf -bibtex -outdir=./_build | |
| steps: | |
| - name: "Authenticate GCloud" | |
| id: "auth" | |
| uses: "google-github-actions/auth@v2" | |
| with: | |
| credentials_json: "${{ secrets.GCP_SA_KEY }}" | |
| - name: "Set-up GCloud SDK" | |
| uses: "google-github-actions/setup-gcloud@v2" | |
| - name: "Upload output PDF" | |
| run: gsutil cp _build/LJMiranda_CV.pdf gs://ljvmiranda/cv.pdf |