chore(deps): bump endstone from c571a5d
to 6294e9e
#12
Workflow file for this run
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
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: latest | |
- 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/ |