Skip to content

v1.17

v1.17 #25

Workflow file for this run

name: Build Release
on:
release:
types: [created]
jobs:
build-windows:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Build
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
python -u build_package.py
shell: cmd
- uses: actions/upload-artifact@v4
with:
name: dependencies
path: build\dependencies.7z
upload-release-artifacts:
needs: build-windows
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: dependencies
- run: find
- name: Upload the artifacts
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: dependencies.7z