Skip to content

Commit

Permalink
adapt to simplified release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Sep 4, 2024
1 parent 163c29a commit cda66bd
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@ name: Create Draft Release
on:
workflow_dispatch:
inputs:
commit_to_release:
description: 'Enter commit hash to release (example: ef4037cb571f99cb4919b520fde7174972aae473)'
commitish_to_release:
type: string
required: true
tag_to_release:
description: 'Enter tag to release (example: v1.5.5)'
type: string
required: true
description: 'Enter commit hash or branch to release (default: main).'
default: "main"

jobs:
create-release:
Expand All @@ -21,7 +17,6 @@ jobs:
contents: write
with:
package_name: peptdeep
commitish_to_release: ${{ inputs.commitish_to_release }}
build_nodejs_ui: false
commit_to_release: ${{ inputs.commit_to_release }}
tag_to_release: ${{ inputs.tag_to_release }}
python_version: 3.9

0 comments on commit cda66bd

Please sign in to comment.