File tree Expand file tree Collapse file tree 5 files changed +66
-111
lines changed
Expand file tree Collapse file tree 5 files changed +66
-111
lines changed Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2025 Deutsche Telekom AG and others
2+ #
3+ # SPDX-License-Identifier: Apache-2.0
4+
5+ name : CI
6+
7+ on :
8+ push :
9+ branches : [ main ]
10+
11+ jobs :
12+ CI :
13+ uses : eclipse-lmos/.github/.github/workflows/ci-main.yml@main
14+ permissions :
15+ contents : read
16+ packages : write
17+ secrets :
18+ oss-username : ${{ secrets.OSSRH_USERNAME }}
19+ oss-password : ${{ secrets.OSSRH_PASSWORD }}
20+ signing-key-id : ${{ secrets.GPG_SUBKEY_ID }}
21+ signing-key : ${{ secrets.GPG_PRIVATE_KEY }}
22+ signing-key-password : ${{ secrets.GPG_PASSPHRASE }}
23+ registry-username : ${{ github.actor }}
24+ registry-password : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2025 Deutsche Telekom AG and others
2+ #
3+ # SPDX-License-Identifier: Apache-2.0
4+
5+ name : CI
6+
7+ on :
8+ push :
9+ branches-ignore :
10+ - ' main'
11+
12+ jobs :
13+ CI :
14+ uses : eclipse-lmos/.github/.github/workflows/ci.yml@main
15+ permissions :
16+ contents : read
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2025 Deutsche Telekom AG and others
2+ #
3+ # SPDX-License-Identifier: Apache-2.0
4+
5+ name : Release
6+
7+ on :
8+ push :
9+ tags :
10+ - ' release'
11+ - ' release-milestone'
12+
13+ jobs :
14+ CI :
15+ uses : eclipse-lmos/.github/.github/workflows/release.yml@main
16+ permissions :
17+ contents : write
18+ packages : write
19+ secrets :
20+ oss-username : ${{ secrets.OSSRH_USERNAME }}
21+ oss-password : ${{ secrets.OSSRH_PASSWORD }}
22+ signing-key-id : ${{ secrets.GPG_SUBKEY_ID }}
23+ signing-key : ${{ secrets.GPG_PRIVATE_KEY }}
24+ signing-key-password : ${{ secrets.GPG_PASSPHRASE }}
25+ registry-username : ${{ github.actor }}
26+ registry-password : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments