Merge remote-tracking branch 'refs/remotes/origin/main'
All checks were successful
Build / Build (push) Successful in 1m16s
Build / Deploy (push) Successful in 11s

This commit is contained in:
amy 2024-12-12 21:56:18 +03:30
commit 4935439056
No known key found for this signature in database

View file

@ -17,6 +17,14 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
- name: Cache npm dependencies
uses: actions/cache@v2
with:
path: '~/.npm'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Build project
run: npm install && npm run build
@ -24,4 +32,25 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: production-files
path: ./dist
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
- 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: "mkgg"
options: "--delete"