Usuwanie kontenera w .jaml
Some checks failed
Build Documentation / budowanie_dokumentacji (push) Failing after 1m12s

This commit is contained in:
s22775-pj-Oleksii-Sumrii
2026-03-24 16:34:40 +01:00
parent afdbaeae9e
commit 19fc592521

View File

@@ -3,25 +3,19 @@ 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
- name: Run Makefile in Docker
# Odpalamy kontener z LaTeXem tylko na ten jeden moment, mapując folder z kodem
run: |
# Wywołujemy Twoją komendę
make all
docker run --rm -v ${{ github.workspace }}:/workspace -w /workspace registry.gitlab.com/islandoftex/images/texlive:latest make all
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Dokumentacja_Archivium_v${{ github.run_number }}
name: Dokumentacja_PDF
path: "*.pdf"
retention-days: 7