Generalize query params with new type and existing change param func #44
This file contains 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-capitalplanning.nycplanningdigital.com | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Deploy to Heroku | |
uses: akhileshns/[email protected] | |
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}} |