Skip to content

Commit

Permalink
deploy_release: fix var substitution name (#1083)
Browse files Browse the repository at this point in the history
Signed-off-by: Dorian Johnson <[email protected]>
  • Loading branch information
dorianj authored May 12, 2021
1 parent 19b842c commit 4de3f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- name: Get module for release
id: module_folder
run: echo "::set-output name=module_folder::$(awk '{print $1}' << "${{ github.event.release.title }}")"
run: echo "::set-output name=module_folder::$(awk '{print $1}' <<< "${{ github.event.release.name }}")"
outputs:
module_folder: ${{ steps.module_folder.outputs.module_folder }}
push-to-pypi:
Expand Down

0 comments on commit 4de3f9b

Please sign in to comment.