Skip to content

Instantly share code, notes, and snippets.

View danieluac's full-sized avatar

António Cordeiro danieluac

View GitHub Profile
@danieluac
danieluac / deploy.sh
Created February 9, 2022 18:37 — forked from cagartner/deploy.sh
Laravel Push deploy Github actions example
#!/bin/sh
set -e
vendor/bin/phpunit
(git push) || true
git checkout production
git merge master