Compare commits
10
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1101b0e17e | ||
|
|
fb14350854 | ||
|
|
13083548b2 | ||
|
|
4f213c72ee | ||
|
|
4cc0d19cbe | ||
|
|
14b4a974d6 | ||
|
|
57cf7bd0f9 | ||
|
|
128aed1d2b | ||
|
|
c2f97dbe93 | ||
|
|
dc16766313 |
@@ -13,13 +13,13 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Compile Spearhead
|
- name: Compile Spearhead
|
||||||
uses: dutchie031/DcsMissionScriptingTools/github-action@feature/github-action
|
uses: https://git.dutchie031.com/dutchie031/DcsMissionScriptingTools/github-action@action/v0
|
||||||
with:
|
with:
|
||||||
source-root: ./src
|
source-root: ./src
|
||||||
output-file: ./output/spearhead.lua
|
output-file: ./output/spearhead.lua
|
||||||
|
|
||||||
- name: Upload spearhead.lua artifact
|
- name: Upload spearhead.lua artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: spearhead-lua
|
name: spearhead-lua
|
||||||
path: ./output/spearhead.lua
|
path: ./output/spearhead.lua
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
name: Publish Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- version.txt
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Read Version from version.txt
|
||||||
|
id: read_version
|
||||||
|
run: |
|
||||||
|
VERSION=$(cat version.txt)
|
||||||
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "tag=v$VERSION" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "Version: $VERSION"
|
||||||
|
|
||||||
|
- name: Compile Spearhead
|
||||||
|
uses: https://git.dutchie031.com/dutchie031/DcsMissionScriptingTools/github-action@action/v0
|
||||||
|
with:
|
||||||
|
source-root: ./src
|
||||||
|
output-file: ./output/spearhead.lua
|
||||||
|
|
||||||
|
- name: Check for existing tag
|
||||||
|
id: check_tag
|
||||||
|
run: |
|
||||||
|
if git tag | grep -q "^${{ steps.read_version.outputs.tag }}$"; then
|
||||||
|
echo "Tag already exists. Exiting."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Apply Tag to Current Commit
|
||||||
|
run: |
|
||||||
|
git config user.name "github-actions"
|
||||||
|
git config user.email "github-actions@github.com"
|
||||||
|
git tag ${{ steps.read_version.outputs.tag }}
|
||||||
|
git push origin ${{ steps.read_version.outputs.tag }}
|
||||||
|
|
||||||
|
- name: Copy Release to Versioned File
|
||||||
|
run: |
|
||||||
|
cp ./output/spearhead.lua ./output/spearhead.${{ steps.read_version.outputs.tag }}.lua
|
||||||
|
echo "Versioned file created: spearhead.${{ steps.read_version.outputs.tag }}.lua"
|
||||||
|
|
||||||
|
- name: Create Release and Upload Assets
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
tag_name: ${{ steps.read_version.outputs.tag }}
|
||||||
|
name: Release ${{ steps.read_version.outputs.tag }}
|
||||||
|
draft: true
|
||||||
|
files: |-
|
||||||
|
./output/spearhead.lua
|
||||||
|
./output/spearhead.${{ steps.read_version.outputs.tag }}.lua
|
||||||
|
#token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: '--experimental-fetch'
|
||||||
|
|
||||||
@@ -1,131 +0,0 @@
|
|||||||
name: Publish Release
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
release_candidate:
|
|
||||||
description: 'Is this a release candidate?'
|
|
||||||
required: true
|
|
||||||
default: true
|
|
||||||
type: boolean
|
|
||||||
change_size:
|
|
||||||
type: choice
|
|
||||||
description: Version Bump
|
|
||||||
options:
|
|
||||||
- patch
|
|
||||||
- minor
|
|
||||||
- major
|
|
||||||
default: patch
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- automation
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0 # Fetch all history for all branches and tags
|
|
||||||
|
|
||||||
- name: Run SpearheadCompile
|
|
||||||
run: |
|
|
||||||
mkdir -p ./output
|
|
||||||
python3 SpearheadCompile.py . ./output/spearhead.lua
|
|
||||||
|
|
||||||
- name: Calculate Tag
|
|
||||||
id: calculate_tag
|
|
||||||
run: |
|
|
||||||
# Get latest tag with 'v' prefix
|
|
||||||
latest_tag=$(git tag --sort=-v:refname | grep -E '^v' | head -n 1)
|
|
||||||
if [ -z "$latest_tag" ]; then
|
|
||||||
latest_tag="v0.0.0"
|
|
||||||
fi
|
|
||||||
echo "Latest tag: $latest_tag"
|
|
||||||
# Remove 'v' prefix for version parsing
|
|
||||||
version=${latest_tag#v}
|
|
||||||
IFS='.' read -r major minor patch <<< "$version"
|
|
||||||
bump="${{ inputs.change_size }}"
|
|
||||||
if [ "$bump" = "major" ]; then
|
|
||||||
major=$((major+1))
|
|
||||||
minor=0
|
|
||||||
patch=0
|
|
||||||
elif [ "$bump" = "minor" ]; then
|
|
||||||
minor=$((minor+1))
|
|
||||||
patch=0
|
|
||||||
else
|
|
||||||
patch=$((patch+1))
|
|
||||||
fi
|
|
||||||
new_tag="v${major}.${minor}.${patch}"
|
|
||||||
if [ "${{ inputs.release_candidate }}" = "true" ]; then
|
|
||||||
new_tag="$new_tag-rc"
|
|
||||||
fi
|
|
||||||
echo "New tag: $new_tag"
|
|
||||||
echo "new_tag=$new_tag" >> "$GITHUB_OUTPUT"
|
|
||||||
|
|
||||||
- name: Check for existing tag
|
|
||||||
id: check_tag
|
|
||||||
run: |
|
|
||||||
if git tag | grep -q "^${{ steps.calculate_tag.outputs.new_tag }}$"; then
|
|
||||||
echo "Tag already exists. Exiting."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Generate Release Notes
|
|
||||||
id: generate_release_notes
|
|
||||||
run: |
|
|
||||||
if [ "${{ inputs.release_candidate }}" != "true" ]; then
|
|
||||||
git log $(git describe --tags --abbrev=0 $(git tag --sort=-v:refname | grep -v '-rc' | head -n 1))..HEAD --pretty=format:'- %s%n %b' > release_notes.txt
|
|
||||||
else
|
|
||||||
git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:'- %s%n %b' > release_notes.txt
|
|
||||||
fi
|
|
||||||
awk -i inplace '!seen[$0]++' release_notes.txt
|
|
||||||
cat release_notes.txt
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Apply Tag to Current Commit
|
|
||||||
run: |
|
|
||||||
git config user.name "github-actions"
|
|
||||||
git config user.email "github-actions@github.com"
|
|
||||||
git tag ${{ steps.calculate_tag.outputs.new_tag }}
|
|
||||||
git push origin ${{ steps.calculate_tag.outputs.new_tag }}
|
|
||||||
|
|
||||||
- name: Copy Release to Versioned File
|
|
||||||
run: |
|
|
||||||
cp ./output/spearhead.lua ./output/spearhead.${{ steps.calculate_tag.outputs.new_tag }}.lua
|
|
||||||
echo "Versioned file created: spearhead.${{ steps.calculate_tag.outputs.new_tag }}.lua"
|
|
||||||
|
|
||||||
- name: Create GitHub Release
|
|
||||||
uses: actions/create-release@v1
|
|
||||||
id: create_release
|
|
||||||
with:
|
|
||||||
tag_name: ${{ steps.calculate_tag.outputs.new_tag }}
|
|
||||||
release_name: Release ${{ steps.calculate_tag.outputs.new_tag }}
|
|
||||||
draft: true
|
|
||||||
body_path: release_notes.txt
|
|
||||||
prerelease: ${{ inputs.release_candidate }}
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Upload Spearhead.lua Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: ./output/spearhead.lua
|
|
||||||
asset_name: spearhead.lua
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
|
|
||||||
- name: Upload Spearhead.lua Asset
|
|
||||||
uses: actions/upload-release-asset@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
asset_path: ./output/spearhead.${{steps.calculate_tag.outputs.new_tag}}.lua
|
|
||||||
asset_name: spearhead.${{steps.calculate_tag.outputs.new_tag}}.lua
|
|
||||||
asset_content_type: application/octet-stream
|
|
||||||
|
|
||||||
@@ -2,3 +2,5 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
/dist
|
/dist
|
||||||
|
|
||||||
|
.vscode/settings.json
|
||||||
Vendored
+3
-1
@@ -18,6 +18,8 @@
|
|||||||
},
|
},
|
||||||
"livePreview.serverRoot": "/_docs",
|
"livePreview.serverRoot": "/_docs",
|
||||||
"Lua.workspace.library": [
|
"Lua.workspace.library": [
|
||||||
"/Users/ex61wi/Developer/personal/DcsMissionScriptingTools/dutchies-dcs-scripting-tools/lua-addons"
|
"/Users/ex61wi/Developer/personal/DcsMissionScriptingTools/dutchies-dcs-scripting-tools/lua-addons",
|
||||||
|
"c:\\Users\\Tim\\.vscode\\extensions\\dutchie031.dutchies-dcs-scripting-tools-0.0.3\\lua-addons"
|
||||||
],
|
],
|
||||||
|
"dutchies-dcs-scripting-tools.compileAt": "onSave",
|
||||||
}
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 330 KiB |
+18
-13
@@ -32,23 +32,28 @@
|
|||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
|
|
||||||
|
|
||||||
<h1 id="welcome">Welcome to Spearhead!</h1>
|
<h1 id="welcome">Welcome to Spearhead!</h1>
|
||||||
|
|
||||||
|
<p>Welcome to the story teller friendly mission framework in DCS (at least, that's what we hope to create).</p>
|
||||||
|
<p>Together with mission editors we've tried to build a framework that makes creating multiplayer missions as easy as possible.
|
||||||
|
|
||||||
|
With the help of naming conventions, trigger zones, pre-configured logic and custom configuration items, it gives a huge amount of versatility.
|
||||||
|
we're trying to strike a balance between no-code and low-code with the possibility to hook into it for the hard core scripters (like ourselves).
|
||||||
|
|
||||||
|
<note-box type="info">
|
||||||
|
<b>For the scripters</b>: If you yourself are a scripter, and you're missing interfaces, please reach out to us! We want to make sure that the framework is as easy to use for scripters as it is for non-scripters, and we can't do that without your help!
|
||||||
|
</note-box>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Whether this is your first mission or your hundredth, we hope Spearhead will make your life easier.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<download-spearhead></download-spearhead>
|
||||||
|
|
||||||
<p>Welcome to the story teller friendly mission framework in DCS (at least, that's what we hope to create).</p>
|
|
||||||
<p>Together with mission editors we've tried to build a framework that
|
|
||||||
makes creating multiplayer missions as easy as possible.
|
|
||||||
With the help of naming conventions, trigger zones, pre-configured
|
|
||||||
logic and custom configuration items, it gives a huge amount of versatility.
|
|
||||||
we're trying to strike a balance between no-code and low-code with the possibility to hook into it for
|
|
||||||
the hard core scripters.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Whether this is your first mission or your hundredth, we hope Spearhead will make your life easier.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<download-spearhead></download-spearhead>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
|
|||||||
@@ -37,11 +37,9 @@
|
|||||||
Even though, at the time of writing this, I've written every single line of code myself, I could not have done it without the help of these members.<br>
|
Even though, at the time of writing this, I've written every single line of code myself, I could not have done it without the help of these members.<br>
|
||||||
Therefore it's something WE created.
|
Therefore it's something WE created.
|
||||||
|
|
||||||
Our goal was very simple, make it possible to make big dynamic missions, without having to either give away all controll or having to get knee deep into scripting. <br>
|
Our goal was very simple, make it possible to make big dynamic missions, without having to either give away all control or having to get knee deep into scripting. <br>
|
||||||
We struck a balance.
|
We struck a balance.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>Hope you enjoy it!</h2>
|
<h2>Hope you enjoy it!</h2>
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
0.12.0
|
||||||
Reference in New Issue
Block a user