Update main.yml #25
Workflow file for this run
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 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 GitHub Actions / Build LaTeX documentInvalid workflow file
|
||
${{ 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 | ||