Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resuelvo bug figura / agrego CI y otros #25

Merged
merged 7 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# yml file for CIs using https://github.com/xu-cheng/latex-action
name: compile
on: [push]

jobs:
compilation:
# The type of runner that the job will run on
runs-on: ubuntu-latest

steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: libroANLE.tex
working_directory: tex
- name: upload
uses: actions/upload-artifact@v4
with:
name: PDF
path: tex/libroANLE.pdf
# - name: Download a Build Artifact
# uses: actions/download-artifact@v3
# with:
# name: PDF
# - name: Display structure of downloaded files
# run: ls -R
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tex/*.pdf
tex/libroANLE.pdf
*.aux
*.synctex.gz
*.log
Expand Down
Loading