Skip to content

Instantly share code, notes, and snippets.

View ntxg's full-sized avatar
👋
ntxg.pl

ntxg ntxg

👋
ntxg.pl
View GitHub Profile
@stancl
stancl / deploy.sh
Last active April 10, 2025 08:40
Deploy using GitHub actions and SSH to a VPS
#!/bin/sh
set -e
vendor/bin/phpunit
npm run prod
git add .
(git commit -m "Build frontend assets for deployment to production") || true
(git push) || true