Associate commits to heroku release in sentry #3
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: Associate commits to heroku release in sentry | |
on: | |
workflow_dispatch | |
jobs: | |
associate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up .netrc | |
uses: extractions/netrc@v1 | |
with: | |
machine: api.heroku.com | |
username: ${{ secrets.HEROKU_ACCOUNT }} | |
password: ${{ secrets.HEROKU_API_KEY }} | |
- name: login into heroku | |
run: heroku login |