35 lines
752 B
YAML
Vendored
35 lines
752 B
YAML
Vendored
name: Amalgamate
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "**/workflows/amalgamate.yml"
|
|
- "**/Source/**"
|
|
- "**/amalgamate.py"
|
|
|
|
jobs:
|
|
run:
|
|
name: Create Amalgamation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.9
|
|
|
|
- name: Create amalgamation file
|
|
run: python amalgamate.py
|
|
|
|
- name: Commit changes
|
|
uses: EndBug/add-and-commit@v10
|
|
with:
|
|
committer_name: GitHub Actions
|
|
committer_email: actions@github.com
|
|
message: Update amalgamation file
|
|
add: 'Distribution/LuaBridge/*.h'
|