From 8faf7bc3aa0ff5e946dfe52ea873f6ef3a2fdd85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Tue, 17 Oct 2023 21:51:45 +0200 Subject: [PATCH] remove github dir --- .github/workflows/demo.yaml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/demo.yaml diff --git a/.github/workflows/demo.yaml b/.github/workflows/demo.yaml deleted file mode 100644 index 26fded8..0000000 --- a/.github/workflows/demo.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Gitea Actions Demo -run-name: ${{ github.actor }} is testing out Gitea Actions 🚀 -on: [push] - -jobs: - checkout: - runs-on: ubuntu-latest - steps: - - name: check out repo - uses: actions/checkout@v3 - - name: list files - run: | - echo "In outer docker container:" - ls - pwd - ls /home - echo "end outer print" - - name: compile - uses: xu-cheng/texlive-action@v2 - with: - docker_image: aergus/latex - run: | - echo "in inner container" - pwd - ls - echo "end inner print" - echo "starting compilation" - latexmk main.tex - - name: upload - uses: actions/upload-artifact@v3 - with: - name: artifact.tex - path: main.pdf