Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mkasberg committed Jan 8, 2025
1 parent 6568732 commit f5fff46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:
inputs:
release_version:
description: The git tag to release.
description: The version to release.
type: string
required: true

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Validate Release Version
run: |
if ! head -n 1 debian/changelog | grep -q '${{ inputs.release_version }}'; then
if ! head -n 1 changelog.Debian | grep -q '${{ inputs.release_version }}'; then
echo "::error::Release version does not match changelog."
exit 1
else
Expand Down

0 comments on commit f5fff46

Please sign in to comment.