Skip to content

Commit

Permalink
feat(ci): Add workflow_dispatch trigger and update job names.
Browse files Browse the repository at this point in the history
This commit adds the "workflow_dispatch" trigger to the CI workflow, allowing manual triggering of the workflow. It also updates the job names to better reflect their purpose.

The benefit of this change is that it provides more flexibility in triggering the CI workflow, allowing for manual execution when needed.
  • Loading branch information
ioanlucut committed Nov 19, 2023
1 parent 1b62668 commit 511b782
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
name: 'CI & Auto Scripts'

on: [ pull_request ]
on: [ pull_request, push, workflow_dispatch ]

jobs:
CompileLaTeX:
CompileConductLaTeX:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Compile LaTeX document
- name: Compile BES Conduct LaTeX doc
uses: xu-cheng/latex-action@v3
with:
root_file: LaTeX/conduct/BES_Conduct_Afisaj.tex
env:
TEXINPUTS: ".:./LaTeX/conduct//:"
working_directory: LaTeX/conduct/
args: -pdf -interaction=nonstopmode
continue_on_error: true
latexmk_shell_escape: true
# env:
# TEXINPUTS: ".:./LaTeX/conduct//:"

- name: Upload PDF file
- name: Upload BES Conduct Afisaj pdf artifact
uses: actions/upload-artifact@v3
with:
name: PDF
name: Conduct
path: BES_Conduct_Afisaj.pdf
8 changes: 4 additions & 4 deletions LaTeX/conduct/BES_Conduct_Afisaj.tex
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
al conținutului de cântece sau materiale relevante pentru întreaga biserică,
fie în ProPresenter, fie în PowerPoint sau alte modalități precum și afișarea versetelor
biblice în timpul predicilor sau îndemnurilor.}
\textbf{Biserica Emanuel Sibiu} are nevoie de o organizare bună al acestui departament
iar acest document vine în ajutorul celor care vor sa se implice, cu scopul de
a trasa obiective clare și reguli pe care trebuie să le păstrăm și la care ne
angajăm atunci când ne alăturăm acestei slujiri.

\maketitle
{\textbf{Biserica Emanuel Sibiu} are nevoie de o organizare bună al acestui departament iar acest document vine în ajutorul celor care vor sa se implice, cu scopul de a trasa obiective clare și reguli pe care trebuie să le păstrăm și la care ne angajăm atunci când ne alăturăm acestei slujiri.}
%

\section{Standardele dorite}
\label{sec:1} E nevoie să avem o abordare adecvată, precum:
Expand Down

0 comments on commit 511b782

Please sign in to comment.