From e43270a8f7368cddbf41d5571f615de10920329a Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 17 Dec 2024 18:52:40 +0100 Subject: [PATCH] Actions: attempt to fix build --- .forgejo/workflows/deploy_single_theme.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy_single_theme.yml b/.forgejo/workflows/deploy_single_theme.yml index c9fb9b57e3..a992de3a2f 100644 --- a/.forgejo/workflows/deploy_single_theme.yml +++ b/.forgejo/workflows/deploy_single_theme.yml @@ -50,13 +50,13 @@ jobs: run: | BRANCH=${{ github.ref_name }} THEME=${BRANCH:6} - scp dist_$THEME.zip hetzner:/root/staging/dist_$THEME + scp dist_$THEME.zip hetzner:/root/staging/dist_$THEME.zip - name: unzipping remote file run: | BRANCH=${{ github.ref_name }} THEME=${BRANCH:6} - ssh hetzner "cd /root/staging && unzip dist_$THEME.zip && rm -rf /root/single_theme_builds/$THEME && mkdir -p /root/single_theme_builds/$THEME && mv /root/staging/$dist_$THEME/* /root/single_theme_builds/$THEME/ && rm dist_$THEME.zip && rmdir dist_$THEME/" + ssh hetzner "cd /root/staging && unzip dist_$THEME.zip && rm -rf /root/single_theme_builds/$THEME && mkdir -p /root/single_theme_builds/$THEME && mv /root/staging/dist_$THEME/* /root/single_theme_builds/$THEME/ && rm dist_$THEME.zip && rmdir dist_$THEME/"