1
0
Fork 0

Update .github/workflows/deploy.yml
Some checks failed
Build and deploy / Deploy (push) Blocked by required conditions
Build and deploy / build (push) Has been cancelled

This commit is contained in:
Lilith Ashley Nyx Arson 🔥 2025-01-09 09:41:04 +01:00
parent 4bce09877b
commit bb2da8dd75

View file

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