Skip to content

Commit

Permalink
asset path with working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubramanianaks committed Aug 15, 2022
1 parent b88d132 commit aff2cda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./lpk-win-x64
asset_path: ${{ github.workspace }}/lpk-win-x64/**
asset_name: lpk-win.zip
asset_content_type: application/zip
- name: Upload Linux Release Assets
Expand All @@ -97,7 +97,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./lpk-linux-x64
asset_path: ${{ github.workspace }}/lpk-linux-x64/**
asset_name: lpk-linux.zip
asset_content_type: application/zip
- name: Upload OSX Release Assets
Expand All @@ -106,6 +106,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./lpk-osx-x64
asset_path: ${{ github.workspace }}/lpk-osx-x64/**
asset_name: lpk-osx.zip
asset_content_type: application/zip

0 comments on commit aff2cda

Please sign in to comment.