Fix/CI: Updated actions used. #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Build | |
on: | |
push: | |
pull_request: | |
paths-ignore: | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: windows-latest | |
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: latest | |
name: Install xmake | |
- name: Build debug | |
run: | | |
xmake f -m debug -y -v | |
xmake -v | |
- name: Build release | |
run: | | |
xmake f -m release -y | |
xmake | |
- name: Prepare artifacts | |
run: | | |
mkdir debug-artifact | |
move bin/windows_x64_debug/FlashlightEngine.exe debug-artifact/ | |
move bin/windows_x64_debug/FlashlightEngine.pdb debug-artifact/ | |
move Resources debug-artifact/ | |
mkdir release-artifact | |
move bin/windows_x64_release/FlashlightEngine.exe release-artifact/ | |
move Resources release-artifact/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FlashlightEngine-windows-debug-${{ github.run_id }} | |
path: debug-artifact/ | |
name: Upload debug artifact | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FlashlightEngine-windows-release-${{ github.run_id }} | |
path: release-artifact/ | |
name: Upload release artifact |