Skip to content

Commit

Permalink
Add placeholder Windows build job
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo committed Jul 4, 2024
1 parent 140b22d commit e80a982
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: BuildWindows

on: workflow_dispatch

jobs:
buildAssets:
uses: ./.github/workflows/build_assets.yml

buildWin64:
needs: buildAssets
runs-on: windows-latest
steps:
- name: Python Setup
uses: actions/setup-python@v5
with:
python-version: "3.12"
architecture: x64
- name: Checkout Source
uses: actions/checkout@v4

0 comments on commit e80a982

Please sign in to comment.