Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
add action
  • Loading branch information
longod committed Apr 5, 2024
1 parent 2f3074c commit ce6a79a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: windows-latest

steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v4
with:
submodules: true

# https://github.com/marketplace/actions/enable-developer-command-prompt
- uses: ilammy/[email protected]
with:
arch: x86
- name: Build Lua
working-directory: ${{env.GITHUB_WORKSPACE}}/src/MWSE/deps/LuaJIT/src
run: msvcbuild.bat

0 comments on commit ce6a79a

Please sign in to comment.