Skip to content

Commit 25d7959

Browse files
committed
Remove zipping as it's done by artifact upload
1 parent 7ee7167 commit 25d7959

1 file changed

Lines changed: 10 additions & 13 deletions

File tree

.github/workflows/msbuild.yml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
name: MSBuild
77

88
on:
9-
push:
9+
push:
1010
branches: [ "master", "development" ]
11-
pull_request:
11+
pull_request:
1212
branches: [ "master", "development" ]
1313

1414
env:
15-
# Path to the solution file relative to the root of the project.
16-
SOLUTION_FILE_PATH: .
15+
# Path to the solution file relative to the root of the project.
16+
SOLUTION_FILE_PATH: .
1717

18-
# Configuration type to build.
19-
# You can convert this to a build matrix if you need coverage of multiple configuration types.
20-
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
21-
BUILD_CONFIGURATION: Release
18+
# Configuration type to build.
19+
# You can convert this to a build matrix if you need coverage of multiple configuration types.
20+
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
21+
BUILD_CONFIGURATION: ReleaseRevision
2222

2323
permissions:
24-
contents: read
24+
contents: read
2525

2626
jobs:
2727
build:
@@ -43,11 +43,8 @@ jobs:
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}}
4545

46-
- name: Zip Artifacts
47-
run: Compress-Archive -Path x64\Release\Pixcen.exe -DestinationPath Pixcen.zip
48-
4946
- name: Upload Artifact
5047
uses: actions/upload-artifact@v4
5148
with:
5249
name: Pixcen
53-
path: Pixcen.zip
50+
path: x64\Release\Pixcen.exe

0 commit comments

Comments
 (0)