This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d7bf20
commit 910ea86
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Create RegistrationService Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
rs_version: | ||
description: 'Version string that is used for publishing (e.g. "1.0.0", NOT "v1.0.0"). Appending -SNAPSHOT will create a snapshot release.' | ||
required: true | ||
type: string | ||
|
||
|
||
env: | ||
REGISTRATION_SERVICE_VERSION: ${{ github.event.inputs.rs_version || inputs.rs_version }} | ||
|
||
jobs: | ||
Prepare-Release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# create tag on the current branch using GitHub's own API | ||
- name: Create tag on current branch (main) | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.git.createRef({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
ref: 'refs/tags/v${{ env.REGISTRATION_SERVICE_VERSION }}', | ||
sha: context.sha | ||
}) | ||
# create merge commit main -> releases encoding the version in the commit message | ||
- name: Merge main -> releases | ||
uses: everlytic/[email protected] | ||
with: | ||
github_token: ${{ github.token }} | ||
source_ref: ${{ github.ref }} | ||
target_branch: 'releases' | ||
commit_message_template: 'Merge commit for release of version v${{ env.REGISTRATION_SERVICE_VERSION }}' | ||
|
||
# Trigger EF Jenkins. This job waits for Jenkins to complete the publishing, which may take a long time, because every | ||
# module is signed individually, and parallelism is not available. Hence, the increased timeout of 3600 seconds. | ||
# There is no way to cancel the process on Jenkins from withing GitHub. | ||
- name: Trigger Release on EF Jenkins | ||
uses: toptal/jenkins-job-trigger-action@master | ||
with: | ||
jenkins_url: "https://ci.eclipse.org/dataspaceconnector/" | ||
jenkins_user: ${{ secrets.EF_JENKINS_USER }} | ||
jenkins_token: ${{ secrets.EF_JENKINS_TOKEN }} | ||
job_name: "RegistrationService-Autobuild-Release" | ||
job_params: | | ||
{ | ||
"VERSION": "${{ env.REGISTRATION_SERVICE_VERSION }}" | ||
} | ||
job_timeout: "3600" # Default 30 sec. (optional) | ||
outputs: | ||
ih-version: ${{ env.REGISTRATION_SERVICE_VERSION }} | ||
|
||
Github-Release: | ||
# cannot use the workflow-level env yet as it does not yet exist, must take output from previous job | ||
if: ${{ !endsWith( needs.Prepare-Release.outputs.ih-version, '-SNAPSHOT') }} | ||
needs: | ||
- Prepare-Release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: main | ||
- name: Create GitHub Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
generateReleaseNotes: true | ||
tag: "v${{ env.REGISTRATION_SERVICE_VERSION }}" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
removeArtifacts: true |