Skip to content

Instantly share code, notes, and snippets.

@butchpage
Forked from LearnWebCode/deploy.yml
Created August 31, 2025 21:40
Show Gist options
  • Select an option

  • Save butchpage/48b92dcbda713c1886364b7f222a7248 to your computer and use it in GitHub Desktop.

Select an option

Save butchpage/48b92dcbda713c1886364b7f222a7248 to your computer and use it in GitHub Desktop.
name: Publish Website
on:
push:
branches:
- main
jobs:
web-deploy:
name: πŸš€ Deploy Website Every Commit
runs-on: ubuntu-latest
steps:
- name: 🚚 Get Latest Code
uses: actions/checkout@v3
- name: πŸ“‚ Sync Files
uses: SamKirkland/web-deploy@v1
with:
target-server: live.learnwebcode.com
remote-user: youruser
private-ssh-key: ${{ secrets.SSH_KEY }}
destination-path: /home/youruser/live.learnwebcode.com/wp-content/themes/my-awesome-theme/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment