Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom authored Mar 23, 2024
1 parent 7ca31d5 commit 24170e1
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,12 @@ jobs:
working-directory: build
run: cmake --build . --config Release

- name: Package executable
run: |
# Package the executable as needed (e.g., zip or install to an installer)
# For example, you can zip the executable
cd build
7z a 8ChocChip.zip Release/8ChocChip.exe
- name: Upload artifact
uses: actions/upload-artifact@v2
- name: Archive Windows EXEs (recursive)
if: success() # Only run if previous steps succeed
uses: actions/upload-artifact@v3
with:
name: 8ChocChip
path: build/8ChocChip.zip
name: windows-exe # Generic name (you can customize)
path: build/**/*.exe # Capture all .exe files recursively



Expand Down

0 comments on commit 24170e1

Please sign in to comment.