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 64a0dc0 commit c726e46Copy full SHA for c726e46
.github/workflows/dotnet.yml
@@ -46,4 +46,6 @@ jobs:
46
uses: actions/upload-artifact@v4
47
with:
48
name: EDSEditor_${{ matrix.dotnet }}
49
- path: EDSEditorGUI\bin\Release\
+ path: |
50
+ EDSEditorGUI\bin\Release\
51
+ EDSSharp\bin\Release\
.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
32
run: |
33
$tag = "${{ github.ref_name }}"
34
$filename = "CANopenEditor-$tag-binary.zip"
35
- Compress-Archive -CompressionLevel Optimal -Path "EDSEditorGUI\bin\Release\*" -DestinationPath $filename
+ Compress-Archive -CompressionLevel Optimal -Path "EDSEditorGUI\bin\Release\*","EDSSharp\bin\Release\*" -DestinationPath $filename
36
echo "binary_name=$filename" >> $env:GITHUB_ENV
37
- name: make release
38
uses: softprops/action-gh-release@v2
0 commit comments