Skip to content

Commit 6fd1b07

Browse files
committed
Bump package version to 0.1.1.2 and update release script to use PowerShell for .pdb file removal
1 parent 9ac222e commit 6fd1b07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
cd publish/win-x64
5252
# Remove .pdb files if any exist
53-
if ls *.pdb 1> /dev/null 2>&1; then rm *.pdb; fi
53+
if (Test-Path "*.pdb") { Remove-Item "*.pdb" }
5454
7z a ../../SemanticCode-${{ needs.prepare.outputs.version }}-win-x64.zip *
5555
5656
- name: Upload Windows artifact

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4-
<Version>0.1.1.1</Version>
4+
<Version>0.1.1.2</Version>
55
<AssemblyVersion>$(Version)</AssemblyVersion>
66
<FileVersion>$(Version)</FileVersion>
77
<InformationalVersion>$(Version)</InformationalVersion>

0 commit comments

Comments
 (0)