Merge pull request #1823 from DuendeSoftware/artifact-upload

Change where to expect artifacts during upload
This commit is contained in:
Brett Hazen 2025-03-04 14:24:36 -06:00 committed by GitHub
commit a7af9d0512
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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");

View file

@ -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

View file

@ -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: