Skip to content

add ipv6 with small test, and change source to disable local LAN discovery. this should show that IPv6 works on the linux screenshot. #157

add ipv6 with small test, and change source to disable local LAN discovery. this should show that IPv6 works on the linux screenshot.

add ipv6 with small test, and change source to disable local LAN discovery. this should show that IPv6 works on the linux screenshot. #157

name: "BOM runtimeclasspath"
on:
push:
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
pull_request:
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
workflow_dispatch:
inputs:
version:
description: dummy
default: dummy
jobs:
validation:
name: "BOM runtimeclasspath"
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: pwd
run: pwd; id -a
- name: generate BOM
run: |
./gradlew -q dependencies --configuration runtimeClasspath
- name: save BOM to file
run: |
./gradlew -q dependencies --configuration runtimeClasspath > bom_runtimeclasspath.txt
- name: upload
uses: actions/upload-artifact@v4
with:
name: bom_runtimeclasspath
path: |
bom_runtimeclasspath.txt
- name: Upload to nightly release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/master'
with:
allowUpdates: true
tag: nightly
omitBodyDuringUpdate: true
omitNameDuringUpdate: true
prerelease: true
replacesArtifacts: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "bom_runtimeclasspath.txt"