From 91d1fe9a7494c83c9a97be7108ba1142d6ae40b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 17 Oct 2023 16:20:43 +0200 Subject: [PATCH] simplify file --- .gitea/workflows/demo.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 8071f49..1e1d1a5 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -6,17 +6,15 @@ jobs: checkout: runs-on: ubuntu-latest steps: - - name: check out repo - uses: actions/checkout@v3 + - uses: actions/checkout@v3 - name: compile run: | pdflatex main.tex - - name: prepare pages + - name: Prepare pages run: | - mkdir public2 - mv main.pdf main.log public2 - - uses: actions/pages@v1 + mkdir public + mv main.pdf main.log public + - name: Deploy to pages + uses: actions/pages@v1 with: - directory: public2 index-title: 'Just a CI test' - index: false