Skip to content

Commit

Permalink
Update README.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
basoko committed Apr 30, 2020
1 parent 76a127c commit 8a38a88
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ also to set the `DEPLOY_ID` environment variable with the ouput of the previous
```yaml
steps:
- name: Notify deploy to Rollbar
uses: rollbar/[email protected].1
uses: rollbar/[email protected].2
id: rollbar_deploy
with:
environment: 'production'
version: '1.0.0'
version: ${{ github.sha }}
env:
ROLLBAR_ACCESS_TOKEN: ${{ secrets.ROLLBAR_ACCESS_TOKEN }}
```
Expand All @@ -50,11 +50,11 @@ steps:
```yaml
steps:
- name: Notify start deploy to Rollbar
uses: rollbar/[email protected].1
uses: rollbar/[email protected].2
id: rollbar_pre_deploy
with:
environment: 'production'
version: '1.0.0'
version: ${{ github.sha }}
status: 'started'
env:
ROLLBAR_ACCESS_TOKEN: ${{ secrets.ROLLBAR_ACCESS_TOKEN }}
Expand All @@ -63,11 +63,11 @@ steps:

steps:
- name: Notify finish deploy to Rollbar
uses: rollbar/[email protected].1
uses: rollbar/[email protected].2
id: rollbar_post_deploy
with:
environment: 'production'
version: '1.0.0'
version: ${{ github.sha }}
status: 'succeeded'
env:
ROLLBAR_ACCESS_TOKEN: ${{ secrets.ROLLBAR_ACCESS_TOKEN }}
Expand Down

0 comments on commit 8a38a88

Please sign in to comment.