@sentry/craft 1.10.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.11.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - feat: powershell target (#515) by @vaind
8
+ - build(deps): bump es5-ext from 0.10.53 to 0.10.63 (#516) by @dependabot
9
+
3
10
  ## 1.10.0
4
11
 
5
12
  ### Various fixes & improvements
package/README.md CHANGED
@@ -705,10 +705,10 @@ By default, `craft` publishes all packages with `.nupkg` extension.
705
705
 
706
706
  The `dotnet` tool must be available on the system.
707
707
 
708
- | Name | Description |
709
- | ------------------ | ---------------------------------------------------------------- |
710
- | `NUGET_API_TOKEN` | NuGet personal API token (https://www.nuget.org/account/apikeys) |
711
- | `NUGET_DOTNET_BIN` | **optional**. Path to .NET Core. Defaults to `dotnet` |
708
+ | Name | Description |
709
+ | ------------------ | ----------------------------------------------------------------- |
710
+ | `NUGET_API_TOKEN` | NuGet personal [API token](https://www.nuget.org/account/apikeys) |
711
+ | `NUGET_DOTNET_BIN` | **optional**. Path to .NET Core. Defaults to `dotnet` |
712
712
 
713
713
  **Configuration**
714
714
 
@@ -1227,6 +1227,38 @@ targets:
1227
1227
  createTag: true
1228
1228
  ```
1229
1229
 
1230
+ ### PowerShellGet (`powershell`)
1231
+
1232
+ Uploads a module to [PowerShell Gallery](https://www.powershellgallery.com/) or another repository
1233
+ supported by [PowerShellGet](https://learn.microsoft.com/en-us/powershell/module/powershellget)'s `Publish-Module`.
1234
+
1235
+ The action looks for an artifact named `<module>.zip` and extracts it to a temporary directory.
1236
+ The extracted directory is then published as a module.
1237
+
1238
+ #### Environment
1239
+
1240
+ The `pwsh` executable [must be installed](https://github.com/powershell/powershell#get-powershell) on the system.
1241
+
1242
+ | Name | Description | Default |
1243
+ | -------------------- | ---------------------------------------------------- | --------- |
1244
+ | `POWERSHELL_API_KEY` | **required** PowerShell Gallery API key | |
1245
+ | `POWERSHELL_BIN` | **optional** Path to PowerShell binary | `pwsh` |
1246
+
1247
+ #### Configuration
1248
+
1249
+ | Option | Description | Default |
1250
+ | -------------------- | ---------------------------------------------------- | --------- |
1251
+ | `module` | **required** Module name. | |
1252
+ | `repository` | **optional** Repository to publish the package to. | PSGallery |
1253
+
1254
+ #### Example
1255
+
1256
+ ```yaml
1257
+ targets:
1258
+ - name: powershell
1259
+ module: Sentry
1260
+ ```
1261
+
1230
1262
  ## Integrating Your Project with `craft`
1231
1263
 
1232
1264
  Here is how you can integrate your GitHub project with `craft`: