From 37af76a29b350814dead96505eb210e1a6c7ed4e Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Fri, 11 Oct 2024 11:31:27 +0200 Subject: [PATCH] fix workflow for real this time --- .forgejo/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 41ec38d..89080e8 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -7,7 +7,8 @@ jobs: - run: git clone https://git.m724.eu/Minecon724/dn42-info . - run: npm i - run: npx parcel build src/index.html - - run: apt install ftp -y && chmod +x deploy.sh && ./deploy.sh + - run: apt update && apt install ftp -y + - run: chmod +x deploy.sh && ./deploy.sh env: FTP_SERVER: ${{ secrets.FTP_SERVER }} FTP_USER: ${{ secrets.FTP_USER }}