-
Notifications
You must be signed in to change notification settings - Fork 209
45 lines (39 loc) · 1.21 KB
/
release-eclipse-distro-build.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
name: Release - Eclipse Distros Build
concurrency:
group: release-eclipse
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
sts4-language-servers-version:
description: Last segments of an s3 path for p2 Repo for eclipse ls extensions
required: true
type: string
jobs:
e432-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e432'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit
e433-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e433'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit
e434-distro:
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e434'
build_type: 'release'
p2-qualifier: 'RELEASE'
sts4-language-servers-version: ${{ inputs.sts4-language-servers-version }}
java_version: '21'
secrets: inherit