File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 7575 name : x64-dll
7676 path : ./artifacts/x64
7777
78- - name : List all artifacts
79- run : |
80- Write-Host "All artifacts:"
81- Get-ChildItem -Path ./artifacts -Recurse | ForEach-Object { Write-Host $_.FullName }
82- shell : pwsh
83-
8478 - name : Get current directory
8579 id : getdir
8680 shell : pwsh
9286 - name : Rename artifacts for release
9387 shell : pwsh
9488 run : |
95- Copy-Item -Path "${{ steps.getdir.outputs.CWD }}\artifacts\x86\Memory.dll" -Destination "${{ steps.getdir.outputs.CWD }}\artifacts\x86\Memory-x86.dll" -Force
96- Copy-Item -Path "${{ steps.getdir.outputs.CWD }}\artifacts\x64\Memory.dll" -Destination "${{ steps.getdir.outputs.CWD }}\artifacts\x64\Memory-x64.dll" -Force
89+ Copy-Item -Path "artifacts\x86\Memory.dll" -Destination "artifacts\x86\Memory-x86.dll" -Force
90+ Copy-Item -Path "artifacts\x64\Memory.dll" -Destination "artifacts\x64\Memory-x64.dll" -Force
91+
92+ - name : List all artifacts
93+ run : |
94+ Write-Host "All artifacts:"
95+ Get-ChildItem -Path ./artifacts -Recurse | ForEach-Object { Write-Host $_.FullName }
96+ shell : pwsh
9797
9898 - name : Create Release
9999 id : create_release
@@ -111,7 +111,7 @@ jobs:
111111 draft : false
112112 prerelease : false
113113 files : |
114- ${{ steps.getdir.outputs.CWD }}\ artifacts\x86\Memory-x86.dll
115- ${{ steps.getdir.outputs.CWD }}\ artifacts\x64\Memory.dll
114+ artifacts\x86\Memory-x86.dll
115+ artifacts\x64\Memory-x64 .dll
116116 env :
117117 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments