mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Merge pull request #1823 from DuendeSoftware/artifact-upload
Change where to expect artifacts during upload
This commit is contained in:
commit
a7af9d0512
3 changed files with 3 additions and 3 deletions
2
.github/workflow-gen/Program.cs
vendored
2
.github/workflow-gen/Program.cs
vendored
|
|
@ -440,7 +440,7 @@ public static class StepExtensions
|
|||
|
||||
public static void StepUploadArtifacts(this Job job, string componentName, bool uploadAlways = false)
|
||||
{
|
||||
var path = $"{componentName}/artifacts/*.nupkg";
|
||||
var path = $"artifacts/*.nupkg";
|
||||
var step = job.Step()
|
||||
.Name("Upload Artifacts");
|
||||
|
||||
|
|
|
|||
2
.github/workflows/identity-server-ci.yml
vendored
2
.github/workflows/identity-server-ci.yml
vendored
|
|
@ -77,6 +77,6 @@ jobs:
|
|||
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
|
||||
with:
|
||||
name: artifacts
|
||||
path: identity-server/artifacts/*.nupkg
|
||||
path: artifacts/*.nupkg
|
||||
overwrite: true
|
||||
retention-days: 15
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ jobs:
|
|||
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
|
||||
with:
|
||||
name: artifacts
|
||||
path: identity-server/artifacts/*.nupkg
|
||||
path: artifacts/*.nupkg
|
||||
overwrite: true
|
||||
retention-days: 15
|
||||
publish:
|
||||
|
|
|
|||
Loading…
Reference in a new issue