chore: clean up all of the test code from figuring out deployments #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| heroku_deploy: | |
| runs-on: ubuntu-22.04 | |
| environment: Heroku Production | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: akhileshns/heroku-deploy@v3.14.15 | |
| with: | |
| heroku_api_key: ${{ secrets.HEROKU_API_KEY }} | |
| heroku_email: ${{ secrets.HEROKU_EMAIL }} | |
| heroku_app_name: ${{ vars.HEROKU_APP_NAME }} | |
| dontuseforce: 0 | |
| env: | |
| DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
| JWT_SECRET: ${{ secrets.JWT_SECRET }} | |
| VITE_SOCKET_HOST: ${{ vars.VITE_SOCKET_HOST }} |