Skip to content

Build request payloads with JSON.stringify and sanitize log output #39

Build request payloads with JSON.stringify and sanitize log output

Build request payloads with JSON.stringify and sanitize log output #39

Workflow file for this run

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 }}