Generate metadata bundle for tags (#2674)
Signed-off-by: Bernd Verst <github@bernd.dev> Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>
This commit is contained in:
parent
c8df937286
commit
1edb32be65
|
@ -0,0 +1,20 @@
|
|||
name: Generate and Upload Component Metadata Bundle on Push to Tag
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
upload-bundle:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
- name: Build bundle.json
|
||||
run: make bundle-component-metadata
|
||||
- name: Upload component-metadata-bundle.json
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: component-metadata-bundle.json
|
||||
path: ./component-metadata-bundle.json
|
Loading…
Reference in New Issue