-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
56 additions
and
7 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,49 @@ | ||
name: Prepare release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: Semantic Version string to use for this release | ||
required: true | ||
branch: | ||
description: Source ranch from which the version should be created. If omitted, 'main' is used. | ||
required: false | ||
default: main | ||
|
||
jobs: | ||
prepare: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 1 | ||
matrix: | ||
repository: [ "runtime-metamodel", "gradleplugins", "connector", "identityhub", "federatedcatalog" ] | ||
|
||
steps: | ||
- name: "Prepare release ${{ matrix.repos.name }}" | ||
run: | | ||
chmod +x ./scripts/github_action.sh | ||
./scripts/github_action.sh | ||
"eclipse-edc" \ | ||
"${{ matrix.repository }}" \ | ||
"prepare-release.yml" \ | ||
"{\"version\": \"${{ inputs.version }}\"}" \ | ||
"${{ secrets.ORG_GITHUB_BOT_USER }}" \ | ||
"${{ secrets.ORG_GITHUB_BOT_TOKEN }}" \ | ||
${{ inputs.branch }} | ||
notify: | ||
needs: [ prepare ] | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: sarisia/actions-status-discord@v1 | ||
name: "Notify on discord" | ||
with: | ||
webhook: ${{ secrets.DISCORD_GITHUB_CI_WEBHOOK }} | ||
# if the publishing is skipped, that means the preceding test run failed | ||
status: ${{ needs.prepare.result }} | ||
title: "Release preparation" | ||
description: "Prepare release ${{ inputs.version }}" | ||
username: GitHub Actions |
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