gug
Some checks failed
Build / Deploy (push) Failing after 13s
Build / Build (push) Has been cancelled

This commit is contained in:
Lilith Ashley Nyx Arson 🔥 2024-12-10 19:52:35 +01:00
parent 6870757f52
commit 298045bcd0

View file

@ -24,4 +24,24 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: production-files
path: ./dist
path: ./dist
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: production-files
path: ./dist
- name: Upload ftp
uses: git.lgbt/mirror/ftp-action@releases/v2
with:
host: ${{ secrets.FTP_SERVER }}
user: ${{ secrets.FTP_USER }}
password: ${{ secrets.FTP_PASSWORD }}
localDir: "dist"
remoteDir: "mkgg"
options: "--delete --asci"