Podmiana .jaml
Some checks failed
Build Documentation / budowanie_dokumentacji (push) Failing after 11s

This commit is contained in:
s22775-pj-Oleksii-Sumrii
2026-03-24 16:48:34 +01:00
parent 7b29110287
commit 8b33805217

View File

@@ -6,16 +6,23 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# Zastępujemy actions/checkout@v3 ręcznym klonowaniem do obecnego folderu (kropka na końcu)
- name: Reczne pobranie kodu - name: Reczne pobranie kodu
run: git clone http://gitea.archvium.eu:30230/OleksiiS/Dokumentacja-Latex.git . run: |
# Klonujemy kod do wyraźnego folderu o nazwie "repo"
git clone http://gitea.archvium.eu:30230/OleksiiS/Dokumentacja-Latex.git repo
# Wypisujemy listę plików, żeby w razie czego mieć to w logach
echo "Zawartość pobranego folderu:"
ls -la repo
- name: Run Makefile in Docker - name: Run Makefile in Docker
run: | run: |
docker run --rm -v ${{ github.workspace }}:/workspace -w /workspace registry.gitlab.com/islandoftex/images/texlive:latest make all # Podpinamy do Dockera wyłącznie nasz folder "repo", gdzie na pewno jest Makefile
docker run --rm -v ${{ github.workspace }}/repo:/workspace -w /workspace registry.gitlab.com/islandoftex/images/texlive:latest make all
- name: Upload Artifacts - name: Upload Artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: Dokumentacja_PDF name: Dokumentacja_PDF
path: "*.pdf" # Szukamy gotowych PDFów wewnątrz folderu repo
path: "repo/*.pdf"