Skip to content

Update main.yml

Update main.yml #34

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
- name: Create resources folder
# run: mkdir -p tikz/resource
run: touch tmp.txt
# - 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
id: upload-pdf
uses: actions/upload-artifact@v4
with:
name: PDF
path: tmp.txt
- name: Send Telegram message
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{ github.actor }} created new commit
Commit message: ${{ github.event.commits[0].message }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
Output pdf: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.upload-pdf.outputs.artifact-id }}