From 15f246c79c4f704a015b8e052b993d92729402e3 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 26 Dec 2024 18:09:40 +0100 Subject: [PATCH] Update build artifact path and Dependabot directories Updated the artifact path in the workflow file to `build/libs/*` for consistency. Modified Dependabot configuration to include the root directory and removed the `plugin` directory for updates. --- .github/dependabot.yml | 2 +- .github/workflows/build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b1c5a30..6f192b8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,7 +7,7 @@ version: 2 updates: - package-ecosystem: "gradle" # See documentation for possible values directories: # Location of package manifests + - "/" - "api" - - "plugin" schedule: interval: "daily" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2332761..80f8847 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,5 +30,5 @@ jobs: - name: Upload a Build Artifact uses: actions/upload-artifact@v4 with: - path: plugin/build/libs/* + path: build/libs/* if-no-files-found: error \ No newline at end of file