Skip to content

Commit

Permalink
Add Github Action for Build (#12)
Browse files Browse the repository at this point in the history
* Update .gitattributes.
* Add github actions.
  • Loading branch information
Holt59 authored Jun 9, 2024
1 parent c6106de commit 208f148
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
*.ts text eol=lf
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.cpp text eol=crlf
*.h text eol=crlf

*.ts text eol=lf
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Installer OMOD Plugin

on:
push:
branches: master
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:
runs-on: windows-2022
steps:
- name: Build Installer OMOD Plugin
uses: ModOrganizer2/build-with-mob-action@master
with:
mo2-dependencies: cmake_common uibase

0 comments on commit 208f148

Please sign in to comment.