-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get production server to automatically deploy new version when master
changes
#48
Comments
Set up a new Github Action to deploy this whenever something is pushed to There's probably a better way to do it (running Needed to set up new Action Secrets in the Secrets section of Settings for the repo, to hold
You can run the action manually by going to https://github.com/DoESLiverpool/optimism/actions/workflows/deploy-to-production.yaml but it should automatically deploy when something is pushed to |
But now the site auto deploys when anyone pushes new changes to |
The production server is running off the
master
branch, but currently to update it you need to log in and then run these steps:cd optimism
git pull
docker-compose build
docker-compose up
We should have it auto-deploy when there are new commits to
master
.The text was updated successfully, but these errors were encountered: