You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -100,13 +100,14 @@ Adding the following to your workflow will create a new Sentry release and tell
100
100
101
101
### Examples
102
102
103
-
- Create a new Sentry release for the `production` environment and upload JavaScript source maps from the `./lib` directory.
103
+
- Create a new Sentry release for the `production` environment, inject Debug IDs into JavaScript source files and sourcemaps and upload them from the `./dist` directory.
104
104
105
105
```yaml
106
106
- uses: getsentry/action-release@v1
107
107
with:
108
108
environment: 'production'
109
-
sourcemaps: './lib'
109
+
inject: true
110
+
sourcemaps: './dist'
110
111
```
111
112
112
113
- Create a new Sentry release for the `production` environment of your project at version `v1.0.1`.
0 commit comments