Skip to content

Commit 7415bd8

Browse files
committed
update scripts
1 parent 4dd99a7 commit 7415bd8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/msbuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ jobs:
9494
9595
- name: Create ZIPs
9696
run: |
97-
Compress-Archive -Path "PKG\*" -DestinationPath "nwinfo.zip" -Force
97+
Compress-Archive -Path "PKG\*" -DestinationPath "NWinfo.zip" -Force
9898
9999
- name: Upload Application
100100
uses: actions/upload-artifact@v6
101101
with:
102-
name: nwinfo
102+
name: NWinfo
103103
path: PKG/
104104

105105
- name: Upload Library
@@ -192,7 +192,7 @@ jobs:
192192
working-directory: ${{env.GITHUB_WORKSPACE}}
193193
run: |
194194
$date_version = (Get-Date -Format 'yyyyMMdd') + ".${{ github.run_number }}"
195-
gh release create "${{ github.ref_name }}" "nwinfo.zip" `
195+
gh release create "${{ github.ref_name }}" "NWinfo.zip" `
196196
--title "${{ github.ref_name }} (Build $date_version)" `
197197
--notes-file "release_notes.txt"
198198
env:

libnw/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define NWINFO_MAJOR_VERSION 1
99
#define NWINFO_MINOR_VERSION 5
1010
#define NWINFO_MICRO_VERSION 2
11-
#define NWINFO_BUILD_VERSION 1
11+
#define NWINFO_BUILD_VERSION 2
1212

1313
#define NWINFO_VERSION NWINFO_MAJOR_VERSION,NWINFO_MINOR_VERSION,NWINFO_MICRO_VERSION,NWINFO_BUILD_VERSION
1414
#define NWINFO_VERSION_STR QUOTE(NWINFO_MAJOR_VERSION.NWINFO_MINOR_VERSION.NWINFO_MICRO_VERSION.NWINFO_BUILD_VERSION)

0 commit comments

Comments
 (0)