Skip to content

Commit 9e81824

Browse files
Add deps workflow
Signed-off-by: androidacy-user <opensource@androidacy.com>
1 parent 6f0b8ac commit 9e81824

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/dependencies.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build
2+
on:
3+
push:
4+
branches:
5+
- develop # run the action on your projects default branch
6+
7+
jobs:
8+
build:
9+
name: Dependencies
10+
runs-on: ubuntu-latest
11+
permissions: # The Dependency Submission API requires write permission
12+
contents: write
13+
steps:
14+
- name: 'Checkout Repository'
15+
uses: actions/checkout@v3
16+
17+
- name: Run snapshot action
18+
uses: mikepenz/gradle-dependency-submission@{latest}
19+
with:
20+
gradle-project-path: "./app"
21+
gradle-build-module: ":app"

0 commit comments

Comments
 (0)