Prepare release #1
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
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 |