Skip to content

Commit

Permalink
feat(#76): using ref_name
Browse files Browse the repository at this point in the history
  • Loading branch information
hsimpson committed Apr 29, 2024
1 parent 0303dd4 commit 85425fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/worflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ steps.package_version.outputs.current-version }}-${{ github.ref }}
tag_name: ${{ github.ref_name }}
release_name: Release ${{ steps.package_version.outputs.current-version }}-${{ github.ref_name }}
draft: false
prerelease: false

Expand All @@ -44,6 +44,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.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
asset_path: ./vscode-glsllint-${{ steps.package_version.outputs.current-version }}.vsix
asset_name: vscode-glsllint-${{ steps.package_version.outputs.current-version }}.vsix
asset_path: ./vscode-glsllint-${{ steps.package_version.outputs.current-version }}-${{ github.ref_name }}.vsix
asset_name: vscode-glsllint-${{ steps.package_version.outputs.current-version }}-${{ github.ref_name }}.vsix
asset_content_type: application/zip

0 comments on commit 85425fc

Please sign in to comment.