Skip to content

Commit

Permalink
add new release workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Aug 22, 2024
1 parent 9cb8dd8 commit e3943e6
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.

on:
workflow_dispatch:
inputs:
commit_to_release:
description: 'Enter commit hash to release (example: ef4037cb571f99cb4919b520fde7174972aae473)'
type: string
required: true
tag_to_release:
description: 'Enter tag to release (example: v1.5.5)'
type: string
required: true

jobs:
create-release:
uses: MannLabs/alphashared/.github/workflows/create-release.yml@v1
with:
package_name: peptdeep
build_nodejs_ui: false
commit_to_release: ${{ inputs.commit_to_release }}
tag_to_release: ${{ inputs.tag_to_release }}
secrets: inherit

0 comments on commit e3943e6

Please sign in to comment.