Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
default: 'true'
type: boolean
version:
description: 'Version to tag (leave empty to use pyproject.toml version)'
description: 'Version (without v prefix) to tag (leave empty to use pyproject.toml version)'
required: false
type: string
pull_request:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- name: Create and push tag
id: create-tag
if: |
(github.event_name == 'workflow_dispatch' && inputs.create_tag == 'true') ||
(github.event_name == 'workflow_dispatch' && inputs.create_tag) ||
(github.event_name == 'pull_request' && steps.version-check.outputs.changed == 'true')
run: |
VERSION=${{ steps.version-check.outputs.version }}
Expand Down
Loading