Skip to content

Commit

Permalink
[BRT-3577] Add dependency upload workflow (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
zsbutosi committed Nov 20, 2023
1 parent f99c4e8 commit c1573ad
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gradle-dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Update Dependency Graph
on:
push:
branches: [ main ]
workflow_dispatch:

jobs:
build:
name: Dependencies
runs-on: ubuntu-latest
permissions: # The Dependency Submission API requires write permission
contents: write
steps:
- name: Checkout Repository
uses: actions/[email protected]

- name: Setup Java
uses: actions/[email protected]
with:
distribution: temurin
java-version: 17

- name: Run snapshot action
uses: mikepenz/[email protected]
with:
use-gradlew: true
gradle-build-module: buildSrc
sub-module-mode: COMBINED
include-build-environment: true

0 comments on commit c1573ad

Please sign in to comment.