mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-09 00:21:03 -04:00
30 lines
709 B
YAML
30 lines
709 B
YAML
name: Dependency Submission
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'main' ]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
dependency-submission:
|
|
runs-on: ubuntu-24.04
|
|
if: github.repository == 'meshtastic/Meshtastic-Android'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-java@v5
|
|
with:
|
|
distribution: temurin
|
|
java-version: 21
|
|
token: ${{ github.token }}
|
|
|
|
- name: Generate and submit dependency graph
|
|
uses: gradle/actions/dependency-submission@v6
|
|
with:
|
|
build-scan-publish: true
|
|
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
|
|
build-scan-terms-of-use-agree: "yes"
|