Skip to content

Commit

Permalink
refactor main.yml workflow for improved clarity and better alignment …
Browse files Browse the repository at this point in the history
…with project structure
  • Loading branch information
ipatate committed Sep 10, 2024
1 parent b259aa9 commit cc67a59
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,19 @@ jobs:

- name: 🔨 Build Project
run: |
# npm install -g bun
bun install
bun run favicon
bun run build
- name: 📂 Sync files
uses: SamKirkland/FTP-Deploy-Action
with:
server: ${{ secrets.FTP_HOST }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.ftp_password }}
local-dir: ${{ secrets.FTP_PATH }}
exclude: |
**/.git*
**/.git*/**
**/node_modules/**
**/.pnpm-store/**
# - name: 📂 Sync files
# uses: SamKirkland/FTP-Deploy-Action
# with:
# server: ${{ secrets.FTP_HOST }}
# username: ${{ secrets.FTP_USERNAME }}
# password: ${{ secrets.ftp_password }}
# local-dir: ${{ secrets.FTP_PATH }}
# exclude: |
# **/.git*
# **/.git*/**
# **/node_modules/**
# **/.pnpm-store/**

0 comments on commit cc67a59

Please sign in to comment.