Skip to content

Merge branch 'main' of https://github.com/webdev-sam/webdevsam.io #1

Merge branch 'main' of https://github.com/webdev-sam/webdevsam.io

Merge branch 'main' of https://github.com/webdev-sam/webdevsam.io #1

Workflow file for this run

name: Deploy to DreamHost
on:
push:
branches:
- main
workflow_dispatch: # Allows manual trigger
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Deploy to DreamHost via SFTP
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: ./
server-dir: ./
dangerous-clean-slate: false
exclude: |
**/.git*
**/.git*/**
**/.github/**
**/.vscode/**
**/.idea/**
**/node_modules/**
**/.env*
**/*.log
**/README.md
**/NOTES.md
**/TODO.md
**/.DS_Store
**/Thumbs.db