Skip to content

Commit

Permalink
build: 🌇 update build config
Browse files Browse the repository at this point in the history
  • Loading branch information
surajgoraya committed May 29, 2024
1 parent b72e0fe commit fdcaaeb
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,22 +92,25 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: ⬇️ Grab Artifact
- name: 🌆 Grab Artifact
uses: actions/download-artifact@v4
- name: Display structure of downloaded files
run: ls -R
- name: 🆙 Upload
id: deployment
- name: 📂 Upload Files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.fpt_username }}
password: ${{ secrets.ftp_password }}
local-dir: './out'
server: ${{secrets.server}}
username: ${{secrets.username}}
password: ${{ secrets.password }}
dry-run: true
local-dir: ./out/
log-level: verbose
exclude: |
**/.git*
**/.git*/**
**/node_modules/**

**/.git*
**/.git*/**
**/node_modules/**
**/.well-known/**
**/cgi-bin/**
.ftpquota
.htaccess

0 comments on commit fdcaaeb

Please sign in to comment.