-
-
Notifications
You must be signed in to change notification settings - Fork 7
58 lines (49 loc) · 1.29 KB
/
gradle_bom_implementation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: "BOM implementation"
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 implementation"
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 implementation
- name: save BOM to file
run: |
./gradlew -q dependencies --configuration implementation > bom_implementation.txt
- name: upload
uses: actions/upload-artifact@v4
with:
name: bom_implementation
path: |
bom_implementation.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_implementation.txt"