Added completeat functionality to indicate at which percentage of the… (#35)
* Added completeat functionality to indicate at which percentage of the TGT_ dead the mission should complete. * added a pipeline to compile the script
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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: Run SpearheadCompile
|
||||
run: |
|
||||
mkdir -p ./output
|
||||
python3 SpearheadCompile.py . ./output/spearhead.lua
|
||||
|
||||
- name: Upload spearhead.lua artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: spearhead-lua
|
||||
path: ./output/spearhead.lua
|
||||
Reference in New Issue
Block a user