Skip to content

Commit

Permalink
change file path for upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubramanianaks committed Aug 15, 2022
1 parent 33bafef commit f8fda71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
name: lpk-${{ matrix.mode }}
path: |
./src/dsc/bin/Release/netcoreapp3.1/${{ matrix.mode }}/publish/*.zip
${{ github.workspace }}/src/dsc/bin/Release/netcoreapp3.1/${{ matrix.mode }}/publish/${{ matrix.mode }}.zip
release:
runs-on: windows-latest
needs: build
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}\lpk-win-x64\
asset_path: ${{ github.workspace }}\${{ matrix.mode }}\
asset_name: lpk-win.zip
asset_content_type: application/zip
- name: Upload Linux Release Assets
Expand All @@ -82,7 +82,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}\lpk-linux-x64\
asset_path: ${{ github.workspace }}\${{ matrix.mode }}\
asset_name: lpk-linux.zip
asset_content_type: application/zip
- name: Upload OSX Release Assets
Expand All @@ -91,6 +91,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}\lpk-osx-x64\
asset_path: ${{ github.workspace }}\${{ matrix.mode }}\
asset_name: lpk-osx.zip
asset_content_type: application/zip

0 comments on commit f8fda71

Please sign in to comment.