disable line instead of use directive #30
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
--- | |
name: Build and Publish PDF | |
on: # yamllint disable-line rule:truthy | |
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/[email protected] | |
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 |