From 7695a0f0823fded426f464d7c63130112d28b5c0 Mon Sep 17 00:00:00 2001 From: s22775-pj-Oleksii-Sumrii <74150190+s22775-pj-Oleksii-Sumrii@users.noreply.github.com> Date: Mon, 23 Mar 2026 18:27:19 +0100 Subject: [PATCH] Dodajemy nowy .jaml --- .giteaworkflowsbuild.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .giteaworkflowsbuild.yaml diff --git a/.giteaworkflowsbuild.yaml b/.giteaworkflowsbuild.yaml new file mode 100644 index 0000000..2bc5e2a --- /dev/null +++ b/.giteaworkflowsbuild.yaml @@ -0,0 +1,27 @@ +name: Build Documentation +on: [push] + +jobs: + budowanie_dokumentacji: + # To musi pasować do Twojego runnera, o którym pisałeś wcześniej + runs-on: ubuntu-latest + + # Ustawiamy obraz Docker bezposrednio dla całego zadania (podobnie jak image w GitLab) + container: + image: registry.gitlab.com/islandoftex/images/texlive:latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run Makefile + run: | + # Wywołujemy Twoją komendę + make all + + - name: Upload Artifacts + uses: actions/upload-artifact@v3 + with: + name: Dokumentacja_Archivium_v${{ github.run_number }} + path: "*.pdf" + retention-days: 7 \ No newline at end of file