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 a159680 commit 09ca720Copy full SHA for 09ca720
.github/workflows/build.yml
@@ -41,3 +41,16 @@ jobs:
41
- name: Push to nuget.org
42
run: dotnet nuget push src/Elmah.Io.Functions.Isolated/bin/Release/Elmah.Io.Functions.Isolated.5.3.${{ github.run_number }}-pre.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
43
if: ${{ github.event_name == 'push' }}
44
+
45
+ - name: Refresh Bugster
46
+ shell: pwsh
47
+ env:
48
+ FUNCTION_APP_URL: ${{ secrets.FUNCTION_APP_URL }}
49
+ run: |
50
+ $repoName = ($env:GITHUB_REPOSITORY -split '/')[1]
51
+ $json = @{ repository = $repoName } | ConvertTo-Json -Compress
52
+ curl --fail-with-body -X POST `
53
+ -H "Content-Type: application/json" `
54
+ -d "$json" `
55
+ $env:FUNCTION_APP_URL
56
+ if: ${{ github.event_name == 'push' }}
0 commit comments