Skip to content

Commit

Permalink
Merge pull request #312 from flcdrg/update-release
Browse files Browse the repository at this point in the history
Fix paths
  • Loading branch information
flcdrg authored Jan 7, 2022
2 parents d04a92e + 28ab2a7 commit 9e11e95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
include:
- solution: VS2019.slnf
os: windows-2019
artifact: vs2019
artifact: VS2019
- solution: VS2022.slnf
os: windows-2022
artifact: vs2022
artifact: VS2022

# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -145,7 +145,7 @@ 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: ./vsix/VS2019/bin/Release/Gardiner.VsShowMissing.VS2019.vsix
asset_path: ./vsix/VS2019/VS2019/bin/Release/Gardiner.VsShowMissing.VS2019.vsix
asset_name: Gardiner.VsShowMissing.VS2019.vsix
asset_content_type: application/octet-stream

Expand All @@ -155,6 +155,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: .vsix/VS2022/bin/Release/Gardiner.VsShowMissing.VS2022.vsix
asset_path: .vsix/VS2022/VS2022/bin/Release/Gardiner.VsShowMissing.VS2022.vsix
asset_name: Gardiner.VsShowMissing.VS2022.vsix
asset_content_type: application/octet-stream

0 comments on commit 9e11e95

Please sign in to comment.