Skip to content

Update main.yml

Update main.yml #25

Workflow file for this run

name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- uses: jwalton/gh-find-current-pr@v1
id: findPr
with:
state: all
- run: echo "Your PR is ${PR}"
if: success() && steps.findPr.outputs.number
env:
PR: ${{ steps.findPr.outputs.pr }}
- name: send telegram message on push
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |

Check failure on line 25 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Build LaTeX document

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 25, Col: 20): Unrecognized named-value: 'PR'. Located at position 1 within expression: PR
${{ github.actor }} created commit:
Commit message: ${{ github.event.commits[0].message }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
See PR: ${{ PR }} ${{steps.findPr.outputs.pr}}
- name: Create resources folder
run: mkdir -p tikz/resource
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: astro-notebook.tex
latexmk_use_xelatex: true
latexmk_shell_escape: true
args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: PDF
path: astro-notebook.pdf
- name: Send result file to Telegram
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message_file: astro-notebook.pdf