From 9e818241a1cca20ba60bfcab9a6c04448a3c56c7 Mon Sep 17 00:00:00 2001 From: androidacy-user Date: Mon, 1 May 2023 14:15:23 -0400 Subject: [PATCH] Add deps workflow Signed-off-by: androidacy-user --- .github/workflows/dependencies.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/dependencies.yml diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml new file mode 100644 index 0000000..c1908d9 --- /dev/null +++ b/.github/workflows/dependencies.yml @@ -0,0 +1,21 @@ +name: build +on: + push: + branches: + - develop # run the action on your projects default branch + +jobs: + build: + name: Dependencies + runs-on: ubuntu-latest + permissions: # The Dependency Submission API requires write permission + contents: write + steps: + - name: 'Checkout Repository' + uses: actions/checkout@v3 + + - name: Run snapshot action + uses: mikepenz/gradle-dependency-submission@{latest} + with: + gradle-project-path: "./app" + gradle-build-module: ":app" \ No newline at end of file