Skip to content

Commit 17015da

Browse files
committed
Add release workflow
1 parent 929eee0 commit 17015da

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: 'New version to be added'
8+
required: true
9+
type: string
10+
11+
jobs:
12+
release:
13+
uses: fizyk/actions-reuse/.github/workflows/shared-release.yml@4.2.0
14+
with:
15+
version: ${{ inputs.version }}
16+
secrets:
17+
app_id: ${{ secrets.RELEASE_APP_ID }}
18+
private_key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}

newsfragments/+53da9cae.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add new release workflow, which will allow releasing new versions directly from GitHub.

0 commit comments

Comments
 (0)