From 2ba30992b308c18ec9a0a43077c7da81c426c28b Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Sat, 28 Sep 2024 15:25:48 +0200 Subject: [PATCH] naming and removed debug stuffs --- .gitea/workflows/build.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 4bf06ee..8957acb 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -22,6 +22,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v3 # Deprecated but v4+ is not supported for GHES with: + name: dist path: dist deploy: @@ -31,10 +32,8 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v3 with: - path: dist + name: dist + path: artifacts - name: Move files to server run: | - pwd - ls -la - ls /var - cp -r dist/* /var/www/beta.martials.no + cp -r artifacts/dist/* /var/www/beta.martials.no