From 716a9e647062bd04167a0391fe5e34ddd1b34bee Mon Sep 17 00:00:00 2001 From: Amy Retzerau Date: Thu, 25 Sep 2025 13:14:36 +0200 Subject: [PATCH] feat: added artifacts to build action --- .gitea/workflows/build.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 9c6bcbc..1b68cdd 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -23,6 +23,23 @@ jobs: npm ci - name: Build run: npm run build + - name: Save Build Artifact + uses: actions/upload-artifact@v4 + with: + name: build-artifact + path: ${{ gitea.workspace }}/build/* + + Upload: + runs-on: ubuntu-latest + needs: Build + steps: + - name: Download artifact + uses: actions/download-artifact@v5 + with: + name: build-artifact + path: ${{ gitea.workspace }}/build + - name: Display structure of downloaded files + run: ls -R - name: setup ssh run: | mkdir -p ~/.ssh/