Skip to content

Commit cad6bfc

Browse files
committed
Update release.yml
1 parent 9675650 commit cad6bfc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ jobs:
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+
7884
- name: Create Release
7985
id: create_release
8086
uses: softprops/action-gh-release@v1
@@ -90,7 +96,7 @@ jobs:
9096
draft: false
9197
prerelease: false
9298
files: |
93-
./artifacts/x86/Memory.dll
94-
./artifacts/x64/Memory.dll
99+
./memory.dll/artifacts/x86/Memory.dll
100+
./memory.dll/artifacts/x64/Memory.dll
95101
env:
96102
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)