mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-06-05 07:46:11 +02:00
Use precise matching for artifact bundles
This should fix the warnings issued when saving artifact bundles.
This commit is contained in:
parent
aa2ed2e033
commit
cb6a0acca4
2 changed files with 5 additions and 2 deletions
|
@ -101,7 +101,10 @@ export class GradleUserHomeCache extends AbstractCache {
|
|||
): Promise<void> {
|
||||
const bundleMetaFile = this.getBundleMetaFile(bundle)
|
||||
|
||||
const globber = await glob.create(artifactPath)
|
||||
const globber = await glob.create(artifactPath, {
|
||||
implicitDescendants: false,
|
||||
followSymbolicLinks: false
|
||||
})
|
||||
const bundleFiles = await globber.glob()
|
||||
|
||||
// Handle no matching files
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue