Skip to content

Commit e468d3e

Browse files
committed
Access the step variable correctly
1 parent d037ed6 commit e468d3e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
with:
31-
tag_name: ${{ get_version.outputs.version }}
32-
release_name: ${{ get_version.outputs.version }}
31+
tag_name: ${{ steps.get_version.outputs.version }}
32+
release_name: ${{ steps.get_version.outputs.version }}
3333
# body: # TODO Read this from the CHANGELOG
3434
draft: false
3535
prerelease: false
@@ -39,6 +39,6 @@ jobs:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
with:
4141
upload_url: ${{ steps.create_release.outputs.upload_url }}
42-
asset_path: dist/citc-${{ get_version.outputs.version }}-py3-none-any.whl
43-
asset_name: citc-${{ get_version.outputs.version }}-py3-none-any.whl
42+
asset_path: dist/citc-${{ steps.get_version.outputs.version }}-py3-none-any.whl
43+
asset_name: citc-${{ steps.get_version.outputs.version }}-py3-none-any.whl
4444
asset_content_type: application/zip

0 commit comments

Comments
 (0)