Skip to content

Instantly share code, notes, and snippets.

@SloRunner
Forked from LukaSikic/forge_deploy
Created November 20, 2021 21:07
Show Gist options
  • Save SloRunner/80306d2aa62b518c02aa8c94cb1f2a71 to your computer and use it in GitHub Desktop.
Save SloRunner/80306d2aa62b518c02aa8c94cb1f2a71 to your computer and use it in GitHub Desktop.
forge_deploy
#!/bin/bash
# File: /usr/local/bin/forge_deploy
# Before using add FORGETOKEN to env variables in .zshrc like: export FORGETOKEN="ey..."
. .forge
if [ $(curl -Li -X POST https://forge.laravel.com/api/v1/servers/$FORGE_SERVER_ID/sites/$FORGE_SITE_ID/deployment/deploy -o /dev/null -w '%{http_code}\n' -s -H "Accept: application/json" -H "Authorization: Bearer $FORGETOKEN") == "200" ]
then
echo "Queued for deployment"
else
echo "Something went wrong"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment