Skip to content

Commit 74e2c66

Browse files
author
Patrick Schwager
committed
Update pipeline scripts
1 parent c996ce0 commit 74e2c66

File tree

4 files changed

+45
-111
lines changed

4 files changed

+45
-111
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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:
10+
- '**'
11+
12+
jobs:
13+
CI:
14+
uses: eclipse-lmos/.github/.github/workflows/ci.yml@pipeline
15+
secrets:
16+
oss-username: ${{ secrets.OSSRH_USERNAME }}
17+
oss-password: ${{ secrets.OSSRH_PASSWORD }}
18+
signing-key-id: ${{ secrets.GPG_SUBKEY_ID }}
19+
signing-key: ${{ secrets.GPG_PRIVATE_KEY }}
20+
signing-key-password: ${{ secrets.GPG_PASSPHRASE }}
21+
registry-username: ${{ github.actor }}
22+
registry-password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/gradle-publish.yml

Lines changed: 0 additions & 61 deletions
This file was deleted.

.github/workflows/gradle.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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/ci.yml@pipeline
16+
secrets:
17+
oss-username: ${{ secrets.OSSRH_USERNAME }}
18+
oss-password: ${{ secrets.OSSRH_PASSWORD }}
19+
signing-key-id: ${{ secrets.GPG_SUBKEY_ID }}
20+
signing-key: ${{ secrets.GPG_PRIVATE_KEY }}
21+
signing-key-password: ${{ secrets.GPG_PASSPHRASE }}
22+
registry-username: ${{ github.actor }}
23+
registry-password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)