From 1cd91370b1c36be5d711c9e645c2ecf4683ede88 Mon Sep 17 00:00:00 2001 From: Leandro Ebner Date: Thu, 13 Jun 2024 16:03:49 +0200 Subject: [PATCH 1/4] Create github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml new file mode 100644 index 0000000..15a61d6 --- /dev/null +++ b/.github/workflows/github-actions-demo.yml @@ -0,0 +1,18 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." From c5dd1677b67ef7175eb4bca14f80f5daaff91bd0 Mon Sep 17 00:00:00 2001 From: Leandro Ebner Date: Thu, 13 Jun 2024 16:23:12 +0200 Subject: [PATCH 2/4] Delete .github/workflows/github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml deleted file mode 100644 index 15a61d6..0000000 --- a/.github/workflows/github-actions-demo.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: GitHub Actions Demo -run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 -on: [push] -jobs: - Explore-GitHub-Actions: - runs-on: ubuntu-latest - steps: - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." From ea94383c759776bd04d50b969c41c5bae6e8ee34 Mon Sep 17 00:00:00 2001 From: Leandro Ebner Date: Thu, 13 Jun 2024 16:34:30 +0200 Subject: [PATCH 3/4] Update latex.yml --- .github/workflows/latex.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml index 8b13789..82b586b 100644 --- a/.github/workflows/latex.yml +++ b/.github/workflows/latex.yml @@ -1 +1,7 @@ - +name: Latex-Compiler +on: + push: + branches: + - "main" + +job: From dd4f868035258cb3c71902ef50767f7bc2ee2fab Mon Sep 17 00:00:00 2001 From: Leandro Ebner Date: Thu, 13 Jun 2024 17:34:12 +0200 Subject: [PATCH 4/4] Update latex.yml --- .github/workflows/latex.yml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml index 82b586b..49c5e32 100644 --- a/.github/workflows/latex.yml +++ b/.github/workflows/latex.yml @@ -1,7 +1,25 @@ -name: Latex-Compiler +name: Latex Compiler on: push: - branches: - - "main" + branches: main +jobs: + compiler: + name: Compiler + runs-on: ubuntu-latest + steps: + - name: Open DOCS Repository + uses: actions/checkout@v4 + - name: Compile LaTeX Source Code + uses: xu-cheng/latex-action@v3 + with: + root_file: main.tex + latexmk_use_xelatex: true + continue_on_error: false + + + -job: + + + +