From a59049ec909320747b021c8666c4433405ef1b7d Mon Sep 17 00:00:00 2001 From: Samuel Philipp Date: Fri, 29 Mar 2024 18:25:52 +0100 Subject: [PATCH] fixed deploy --- .forgejo/workflows/build-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build-deploy.yml b/.forgejo/workflows/build-deploy.yml index ed422ea..237487b 100644 --- a/.forgejo/workflows/build-deploy.yml +++ b/.forgejo/workflows/build-deploy.yml @@ -26,7 +26,7 @@ jobs: needs: [build] if: github.ref == 'refs/heads/develop' steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 - name: Install Dependencies run: which lftp || ( apk --update add lftp ) - name: Deploy Website @@ -43,7 +43,7 @@ jobs: needs: [build] if: github.ref == 'refs/heads/main' steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 - name: Install Dependencies run: which lftp || ( apk --update add lftp ) - name: Deploy Website