Skip to content

[54] Add SBOM generation support #157

[54] Add SBOM generation support

[54] Add SBOM generation support #157

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Java SDK
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
with:
distribution: temurin
java-version: 17
- name: Build with Maven
run: ./mvnw clean verify
- name: Deploy
if: startsWith(github.ref, 'refs/tags/v')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./mvnw deploy -f org.eclipse.sirius.emfjson/pom.xml