From cc0a72a06a0c0a69c522f5766b685f64948de7ab Mon Sep 17 00:00:00 2001 From: Mans Ziesel Date: Tue, 13 Jun 2023 19:27:36 +0200 Subject: [PATCH] test --- .gitea/workflows/hugo.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/hugo.yaml b/.gitea/workflows/hugo.yaml index 0883f32..dfa9f1d 100644 --- a/.gitea/workflows/hugo.yaml +++ b/.gitea/workflows/hugo.yaml @@ -21,7 +21,12 @@ jobs: - name: Build site run: hugo --minify - - name: Setup tree - run: apt update && apt install tree -y - - name: Run tree - run: tree + - name: Pwd & ls + run: pwd ; ls + - name: Create tarfile + run: tar -cf website.tar ./* + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: website-files + path: website.tar