We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9675650 commit cad6bfcCopy full SHA for cad6bfc
.github/workflows/release.yml
@@ -75,6 +75,12 @@ jobs:
75
name: x64-dll
76
path: ./artifacts/x64
77
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
+
84
- name: Create Release
85
id: create_release
86
uses: softprops/action-gh-release@v1
@@ -90,7 +96,7 @@ jobs:
90
96
draft: false
91
97
prerelease: false
92
98
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
95
101
env:
102
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments