1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-23 12:18:51 +02:00

Fix release script

This commit is contained in:
Jesse Duffield 2025-02-25 22:07:11 +11:00
parent fd01ca3acf
commit f5cd02b54f

View File

@ -75,7 +75,7 @@ jobs:
- name: Calculate next version
run: |
echo "Latest tag: ${{ env.latest_tag }}"
IFS='.' read -r major minor patch <<< "${env.latest_tag#v}"
IFS='.' read -r major minor patch <<< "${{ env.latest_tag }}"
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
if [[ "${{ inputs.version_bump }}" == "patch" ]]; then