Task 412 Add Selected Location Section to Results Panel #143
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 to staging | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| name: 🚀 Deploy | |
| environment: | |
| name: staging-cp-map | |
| url: https://staging-capitalprojects.nycplanningdigital.com | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 'Install Heroku CLI' | |
| run: curl https://cli-assets.heroku.com/install.sh | sh | |
| - name: Deploy to Heroku | |
| uses: akhileshns/heroku-deploy@v3.13.15 | |
| with: | |
| heroku_email: ${{secrets.HEROKU_EMAIL}} | |
| heroku_api_key: ${{secrets.HEROKU_API_KEY}} | |
| heroku_app_name: ${{secrets.HEROKU_APP_NAME}} | |
| team: ${{secrets.HEROKU_TEAM}} | |
| env: | |
| HD_VITE_ZONING_API_URL: ${{secrets.VITE_ZONING_API_URL}} | |
| HD_VITE_CPDB_DATA_URL: ${{secrets.VITE_CPDB_DATA_URL}} | |
| HD_VITE_FEATURE_FLAG_ATTRIBUTE_FILTERS: ${{secrets.VITE_FEATURE_FLAG_ATTRIBUTE_FILTERS}} | |
| HD_VITE_BASEMAP_URL: ${{vars.VITE_BASEMAP_URL}} | |
| HD_VITE_FACDB_PHASE_1: ${{secrets.VITE_FACDB_PHASE_1}} | |
| HD_VITE_FACDB_PHASE_2: ${{secrets.VITE_FACDB_PHASE_2}} |