Skip to content

Commit

Permalink
absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Brennan1994 committed Aug 28, 2024
1 parent 77ab955 commit 302be03
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 @@ -39,13 +39,13 @@ jobs:
with:
name: windows-x64-${{ env.VERSION }}
path: |
"**/bin/Release/net8.0/win-x64/native/"
"D:/a/consequences/consequences/Consequences/bin/Release/net8.0/win-x64/native/"
- name: Attach Windows artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: "**/bin/Release/net8.0/win-x64/native/"
asset_path: "D:/a/consequences/consequences/Consequences/bin/Release/net8.0/win-x64/native/"
asset_name: windows-x64-${{ env.VERSION }}.zip
asset_content_type: application/zip

Expand Down Expand Up @@ -82,12 +82,12 @@ jobs:
with:
name: linux-x64-${{ env.VERSION }}
path: |
"**/bin/Release/net8.0/linux-x64/native/"
"D:/a/consequences/consequences/Consequences/bin/Release/net8.0/linux-x64/native/"
- name: Attach Linux artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: "**/bin/Release/net8.0/linux-x64/native/"
asset_path: "D:/a/consequences/consequences/Consequences/bin/Release/net8.0/linux-x64/native/"
asset_name: linux-x64-${{ env.VERSION }}.zip
asset_content_type: application/zip

0 comments on commit 302be03

Please sign in to comment.