Skip to content

Commit c726e46

Browse files
authored
include cli sw in release (#140)
1 parent 64a0dc0 commit c726e46

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,6 @@ jobs:
4646
uses: actions/upload-artifact@v4
4747
with:
4848
name: EDSEditor_${{ matrix.dotnet }}
49-
path: EDSEditorGUI\bin\Release\
49+
path: |
50+
EDSEditorGUI\bin\Release\
51+
EDSSharp\bin\Release\

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
$tag = "${{ github.ref_name }}"
3434
$filename = "CANopenEditor-$tag-binary.zip"
35-
Compress-Archive -CompressionLevel Optimal -Path "EDSEditorGUI\bin\Release\*" -DestinationPath $filename
35+
Compress-Archive -CompressionLevel Optimal -Path "EDSEditorGUI\bin\Release\*","EDSSharp\bin\Release\*" -DestinationPath $filename
3636
echo "binary_name=$filename" >> $env:GITHUB_ENV
3737
- name: make release
3838
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)