From 02f250c76eb6d1b7fb410394c88397e37dd527e4 Mon Sep 17 00:00:00 2001 From: SIGit Date: Tue, 18 Jun 2024 15:30:16 +0100 Subject: [PATCH] fix: take 3 all files --- .gitea/workflows/release-production.yaml | 3 ++- .gitea/workflows/release-staging.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release-production.yaml b/.gitea/workflows/release-production.yaml index f1e7184..e2dd110 100644 --- a/.gitea/workflows/release-production.yaml +++ b/.gitea/workflows/release-production.yaml @@ -29,4 +29,5 @@ jobs: - name: Release Build run: | npm -g install cloudron-surfer - surfer put --token ${{ secrets.CLOUDRON_SURFER_TOKEN }} --server sigit.io dist/ / + cd dist + surfer put --token ${{ secrets.CLOUDRON_SURFER_TOKEN }} --server sigit.io . / diff --git a/.gitea/workflows/release-staging.yaml b/.gitea/workflows/release-staging.yaml index 47a99fb..c93f053 100644 --- a/.gitea/workflows/release-staging.yaml +++ b/.gitea/workflows/release-staging.yaml @@ -29,4 +29,5 @@ jobs: - name: Release Build run: | npm -g install cloudron-surfer - surfer put --token ${{ secrets.STAGING_CLOUDRON_SURFER_TOKEN }} --server staging.sigit.io dist/ / + cd dist + surfer put --token ${{ secrets.STAGING_CLOUDRON_SURFER_TOKEN }} --server staging.sigit.io . /