File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 88 push :
99 branches :
1010 - " renovate/**"
11-
11+
12+ # Prevent duplicate runs if Renovate falls back to creating a PR
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
15+ cancel-in-progress : true
16+
1217jobs :
1318 ci :
1419 runs-on : ubuntu-latest
1520
21+
1622 steps :
1723 - uses : actions/checkout@v4
1824 with :
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Process {
2626 Exec { & dotnet pack - c Release - o " $outputDir " }
2727
2828 if (($null -ne $env: NUGET_SOURCE ) -and ($null -ne $env: NUGET_API_KEY )) {
29- Exec { & dotnet nuget push " $nupkgsPath " - s $env: NUGET_SOURCE - k $env: NUGET_API_KEY }
29+ Exec { & dotnet nuget push " $nupkgsPath " - s $env: NUGET_SOURCE - k $env: NUGET_API_KEY -- skip-duplicate }
3030 }
3131 }
3232 finally {
You can’t perform that action at this time.
0 commit comments