Skip to content

Commit 2f9b8e1

Browse files
author
ole
authored
Update vsce-attach-file.yml
1 parent c97192e commit 2f9b8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/vsce-attach-file.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
with:
2626
upload_url: ${{ github.event.release.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
27-
asset_path: ${{ join('githistory-', github.event.release.tag_name, '.vsix') }}
28-
asset_name: ${{ join('githistory-', github.event.release.tag_name, '.vsix') }}
27+
asset_path: ${{ format('githistory-{0}.vsix', github.event.release.tag_name) }}
28+
asset_name: ${{ format('githistory-{0}.vsix', github.event.release.tag_name) }}
2929
asset_content_type: application/zip

0 commit comments

Comments
 (0)