mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 08:15:49 +00:00
Adding more context in Chainloop configs
Signed-off-by: Daniel Liszka <daniel@chainloop.dev>
This commit is contained in:
parent
fb68308e30
commit
299e916257
2 changed files with 4 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
# defines files to be added to the attestation
|
||||||
attestation:
|
attestation:
|
||||||
- name: binary
|
- name: binary
|
||||||
path: artifacts/spring-petclinic-*.jar
|
path: artifacts/spring-petclinic-*.jar
|
||||||
|
|
3
.github/workflows/maven-build.yml
vendored
3
.github/workflows/maven-build.yml
vendored
|
@ -28,11 +28,14 @@ jobs:
|
||||||
- name: Build with Maven Wrapper
|
- name: Build with Maven Wrapper
|
||||||
run: ./mvnw -B package
|
run: ./mvnw -B package
|
||||||
|
|
||||||
|
# Upload the built jar as an artifact so that it can be used in the Chainloop job
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: artifacts
|
||||||
path: target/*.jar
|
path: target/*.jar
|
||||||
|
|
||||||
|
# Chainloop integration
|
||||||
|
# will run only if the build job is successful
|
||||||
chainloop:
|
chainloop:
|
||||||
name: Chainloop
|
name: Chainloop
|
||||||
uses: chainloop-dev/labs/.github/workflows/chainloop.yml@a75dff2ef342a1e5c5e1ec5c42fb99f3d1bc03cb
|
uses: chainloop-dev/labs/.github/workflows/chainloop.yml@a75dff2ef342a1e5c5e1ec5c42fb99f3d1bc03cb
|
||||||
|
|
Loading…
Reference in a new issue