Skip to content

Commit 6d8b451

Browse files
committed
Turns out it zips them anyway
1 parent 199050b commit 6d8b451

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,13 @@ jobs:
9696
dotnet-version: 9.0.x
9797

9898
- name: Build Editor App
99-
run: dotnet publish -c Release -r win-x64 --sc /p:Version=${{ env.BuildVersion }} -o "editor-temp" "${{ env.EditorProject }}"
99+
run: dotnet publish -c Release -r win-x64 --sc /p:Version=${{ env.BuildVersion }} -o "editor" "${{ env.EditorProject }}"
100100

101-
- name: Package Editor App
102-
shell: pwsh
103-
run: |
104-
New-Item -Path . -Name "editor-build" -ItemType "directory"
105-
Compress-Archive -Path "editor-temp/*" -Destination "/editor-build/editor-${{env.BuildVersion}}.zip"
106-
107101
- name: Publish Editor Artifact
108102
uses: actions/upload-artifact@v4
109103
with:
110104
name: editor-app
111-
path: /editor-build
105+
path: /editor
112106

113107
package-and-release:
114108
runs-on: windows-latest

0 commit comments

Comments
 (0)