chore: updated ph dependencies #227
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 Connect Powerhouse Develop | |
on: | |
push: | |
branches: [develop] | |
env: | |
HUSKY: 0 | |
jobs: | |
build: | |
environment: develop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up heroku | |
run: sudo curl https://cli-assets.heroku.com/install.sh | sh | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build, Push and Release APP to Heroku. # Your custom step name | |
uses: gonuit/[email protected] | |
with: | |
email: ${{ secrets.HEROKU_EMAIL }} | |
heroku_api_key: ${{ secrets.HEROKU_API_KEY }} | |
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }} | |
docker_options: >- | |
--build-arg BASE_PATH=/develop/powerhouse/connect | |
--build-arg PH_CONNECT_SENTRY_DSN=${{ secrets.SENTRY_DSN }} | |
--build-arg PH_CONNECT_SENTRY_ENV=${{ secrets.SENTRY_ENV }} | |
--build-arg SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} | |
--build-arg SENTRY_ORG=${{ secrets.SENTRY_ORG }} | |
--build-arg SENTRY_PROJECT=${{ secrets.SENTRY_PROJECT }} | |
process_type: web |