Skip to content

Commit

Permalink
Merge pull request #5 from kmaba/main
Browse files Browse the repository at this point in the history
Create build.yml
  • Loading branch information
TheBarii authored Jul 18, 2024
2 parents b9da4a3 + 797d45e commit 46a20b2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build Flarial

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Run build.bat
run: |
call .\build.bat
shell: cmd

- name: Upload DLL
uses: actions/upload-artifact@v2
with:
name: FlarialDLL
path: "Release/Flarial.dll"

0 comments on commit 46a20b2

Please sign in to comment.