Skip to content

Make BoM

Make BoM #46

Workflow file for this run

name: Make BoM
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/[email protected]
- name: Set up JDK 17
uses: actions/[email protected]
with:
java-version: 17
distribution: temurin
cache: gradle
- name: Build
run: |
./ci/run.sh \
--artifact-target-dir=./logs/artifacts \
--artifact-patterns=bom.zip \
--artifact-patterns=bomReleaseNotes.md \
--artifact-patterns=recipeVersionUpdate.txt \
gradle \
-- \
--build-cache \
buildBomZip
- name: Upload generated artifacts
uses: actions/[email protected]
with:
name: artifacts
path: ./logs/artifacts/
retention-days: 5