128aed1d2b
* custom drawings and animations for video * wip * Work in progress refactor for toolkit * wip * Refactored everything for Lua Compile Tool * Trying out the github action * updated the github action ref * initial working version --------- Co-authored-by: ex61wi <tim.rorije@ing.com> Co-authored-by: dutchie031 <dutchie031>
26 lines
576 B
YAML
26 lines
576 B
YAML
name: Compile Artifact
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Compile Spearhead
|
|
uses: dutchie031/DcsMissionScriptingTools/github-action@actions/v1
|
|
with:
|
|
source-root: ./src
|
|
output-file: ./output/spearhead.lua
|
|
|
|
- name: Upload spearhead.lua artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: spearhead-lua
|
|
path: ./output/spearhead.lua
|