Skip to content

Commit

Permalink
build: add release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Aug 14, 2024
1 parent 8c81177 commit 4c06b0d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Prepare Release

on:
workflow_dispatch:
inputs:
version:
description: the version to be released. If it ends with '.0' a proper release is created, bugfix otherwise
required: true
type: string

jobs:
Prepare-Release:
uses: eclipse-edc/.github/.github/workflows/technology-prepare-release.yml@main
secrets: inherit
with:
version: ${{ inputs.version }}
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Release

on:
workflow_dispatch:


jobs:
Release:
uses: eclipse-edc/.github/.github/workflows/technology-release.yml@main
secrets: inherit

0 comments on commit 4c06b0d

Please sign in to comment.