Skip to content

Commit

Permalink
Merge branch 'main' of github.com:LiteLDev/levistone
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-vincent committed Jan 14, 2025
2 parents f8146c1 + 1c79d5a commit 6d20c2e
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
on:
pull_request:
push:
workflow_dispatch:

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
fetch-depth: 0

- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master

- uses: actions/setup-python@v5
with:
python-version: "3.12"

- uses: actions/cache@v4
with:
path: |
~/AppData/Local/.xmake
key: xmake-${{ hashFiles('xmake.lua') }}
restore-keys: |
xmake-
- run: |
xmake repo -u
- run: |
xmake f -a x64 -m release -p windows -v -y
- run: |
xmake -v -w -y
- uses: actions/upload-artifact@v4
with:
name: LeviStone-windows-x64-${{ github.sha }}
path: |
bin/

0 comments on commit 6d20c2e

Please sign in to comment.