commit 57a7fd100ada93d393e90d794b9ab4ffd66ba578
parent 644fbb1fb8113e134fddd1877c407421cf2fa964
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Wed, 20 Nov 2024 00:58:50 +0100
fix wrong input variable name
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
@@ -48,8 +48,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
- tag_name: ${{ env.VERSION }}
- release_name: Release ${{ env.VERSION }}
+ tag_name: ${{ github.event.inputs.version }}
+ release_name: Release ${{ github.event.inputs.version }}
body_path: ${{github.workspace}}/doc/changelog.txt
draft: true
prerelease: false
@@ -60,6 +60,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
- asset_path: build/*${{ env.VERSION }}*.{zip,deb,rpm}
- asset_name: ${{ env.VERSION }}-asset
+ asset_path: build/*${{ github.event.inputs.version }}*.{zip,deb,rpm}
+ asset_name: ${{ github.event.inputs.version }}-asset
asset_content_type: application/octet-stream