Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Foereaper authored Nov 26, 2024
1 parent bdd17b3 commit c9bf372
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build LS files

on:
push:
workflow_call:

jobs:
build-ls-files:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Clone Eluna documentation repository
uses: actions/checkout@v4
with:
repository: ElunaLuaEngine/ElunaLuaEngine.github.io
path: docs

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'

- name: Install Python dependencies
run: pip install beautifulsoup4

- name: Create build directory
run: mkdir -p ./build

- name: Compile LS files
run: |
bash runParser.sh ./parser.py ./docs ./build

0 comments on commit c9bf372

Please sign in to comment.