We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1beb94 commit 36d14dbCopy full SHA for 36d14db
.github/workflows/build.yml
@@ -48,3 +48,16 @@ jobs:
48
- name: Push
49
run: dotnet nuget push src/Elmah.Io.OpenTelemetry/bin/Release/Elmah.Io.OpenTelemetry.5.3.${{ github.run_number }}-pre.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
50
if: ${{ github.event_name == 'push' }}
51
+
52
+ - name: Refresh Bugster
53
+ shell: pwsh
54
+ env:
55
+ FUNCTION_APP_URL: ${{ secrets.FUNCTION_APP_URL }}
56
+ run: |
57
+ $repoName = ($env:GITHUB_REPOSITORY -split '/')[1]
58
+ $json = @{ repository = $repoName } | ConvertTo-Json -Compress
59
+ curl --fail-with-body -X POST `
60
+ -H "Content-Type: application/json" `
61
+ -d "$json" `
62
+ $env:FUNCTION_APP_URL
63
+ if: ${{ github.event_name == 'push' }}
0 commit comments