Build request payloads with JSON.stringify and sanitize log output #39
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
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| name: Deploy to DEV | |
| jobs: | |
| test: | |
| uses: remotemobprogramming/timer/.github/workflows/test.yml@main | |
| deployment: | |
| needs: test | |
| environment: development | |
| concurrency: development | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Deploy to Heroku | |
| run: | | |
| export GEM_HOME="$HOME/.gem" | |
| export BUNDLE_PATH="$HOME/.bundle" | |
| export PATH="$GEM_HOME/bin:$PATH" | |
| gem install dpl | |
| dpl --provider=heroku --app=${{ secrets.HEROKU_APP_NAME_DEV }} --api-key=${{ secrets.HEROKU_AUTH_TOKEN }} |