Skip to content

Commit

Permalink
add new release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Sep 5, 2024
1 parent d985243 commit 91849c6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Create a draft release and build and upload all installers to it.
name: Create Release

on:
workflow_dispatch:
inputs:
commitish_to_release:
type: string
description: 'Enter commit hash or branch to release (default: main).'
default: "main"

jobs:
create-release:
uses: MannLabs/alphashared/.github/workflows/create_release.yml@v1
secrets: inherit
permissions:
contents: write
with:
package_name: alphapeptstats
commitish_to_release: ${{ inputs.commitish_to_release }}
build_nodejs_ui: false
test_app: false
python_version: 3.9

0 comments on commit 91849c6

Please sign in to comment.