Skip to content

Commit 7ee7167

Browse files
committed
Zip artifact
1 parent bae01df commit 7ee7167

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/msbuild.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ name: MSBuild
77

88
on:
99
push:
10-
branches: [ "master" ]
10+
branches: [ "master", "development" ]
1111
pull_request:
12-
branches: [ "master" ]
12+
branches: [ "master", "development" ]
1313

1414
env:
1515
# Path to the solution file relative to the root of the project.
@@ -42,3 +42,12 @@ jobs:
4242
# Add additional options to the MSBuild command line here (like platform or verbosity level).
4343
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
4444
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
45+
46+
- name: Zip Artifacts
47+
run: Compress-Archive -Path x64\Release\Pixcen.exe -DestinationPath Pixcen.zip
48+
49+
- name: Upload Artifact
50+
uses: actions/upload-artifact@v4
51+
with:
52+
name: Pixcen
53+
path: Pixcen.zip

res/revision.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#define VERSION_A 0
22
#define VERSION_B 7
33
#define VERSION_C 0
4-
#define VERSION_D 50
4+
#define VERSION_D 1977396295

0 commit comments

Comments
 (0)