Skip to content

updates

updates #29

Workflow file for this run

%YAML 1.2

Check failure on line 1 in .github/workflows/build_publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_publish.yml

Invalid workflow file

You have an error in your yaml syntax
---
name: Build and Publish PDF
on:
push:
branches: [main]
workflow_dispatch:
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