-
Notifications
You must be signed in to change notification settings - Fork 1k
48 lines (46 loc) · 1.16 KB
/
release.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
name: Release SBOM Assets
on:
release:
types:
- created
jobs:
release-9-x:
name: Upload Release Assets for 9-X releases
if: contains(github.event.release.name, '9.')
strategy:
fail-fast: false
matrix:
tag:
- 9-community
- 9-developer
- 9-enterprise
- 9-datacenter-app
- 9-datacenter-search
uses: ./.github/workflows/release-template.yml
with:
tag: ${{ matrix.tag }}
release-10-x:
name: Upload Release Assets for 10-X releases
if: contains(github.event.release.name, '10.')
strategy:
fail-fast: false
matrix:
tag:
- 10-developer
- 10-enterprise
- 10-datacenter-app
- 10-datacenter-search
uses: ./.github/workflows/release-template.yml
with:
tag: ${{ matrix.tag }}
release-community-build:
name: Upload Release Assets for community-build release
if: contains(github.event.release.name, 'Community Build')
strategy:
fail-fast: false
matrix:
tag:
- community
uses: ./.github/workflows/release-template.yml
with:
tag: ${{ matrix.tag }}