Skip to content

Merge pull request #5 from gboeing/dependabot/github_actions/actions/… #12

Merge pull request #5 from gboeing/dependabot/github_actions/actions/…

Merge pull request #5 from gboeing/dependabot/github_actions/actions/… #12

Workflow file for this run

name: Build and Publish PDF
on:
push:
branches: [main]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build PDF
uses: xu-cheng/latex-action@v3
with:
root_file: cv-gboeing.tex
- name: Publish PDF
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
passphrase: ${{ secrets.SSH_KEY_PASSPHRASE }}
source: "cv-gboeing.pdf"
target: "~/public_html/share"
use_insecure_cipher: true