Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 38 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
unreal_engine_version:
[
"4.26.0", "4.27.0",
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0"
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0", "5.6.0"
]
version:
["free", "full"]
Expand All @@ -47,11 +47,44 @@ jobs:
mv AdvancedControlFlow_UE${{ matrix.unreal_engine_version }}_${{ matrix.version }}.zip release-plugin-${{ matrix.version }}

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: AdvancedControlFlow_${{ matrix.unreal_engine_version }}_${{ matrix.version }}
path: "release-plugin-${{ matrix.version }}"

merge-plugin-pack:
name: Merge packed plugins
runs-on: ubuntu-latest
needs: [plugin-pack]
strategy:
fail-fast: false
matrix:
version:
["free", "full"]
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: AdvancedControlFlow_*_${{ matrix.version }}
merge-multiple: true
path: dist

- name: Move artifacts
run: |
mkdir release-plugin-${{ matrix.version }}
mv dist/AdvancedControlFlow_*_${{ matrix.version }}.zip release-plugin-${{ matrix.version }}

- name: Updload artifacts
uses: actions/upload-artifact@v4
with:
name: AdvancedControlFlow_${{ matrix.version }}
path: "release-plugin-${{ matrix.version }}"

- name: Delete unused artifacts
uses: geekyeggo/delete-artifact@v5
with:
name: AdvancedControlFlow_*_${{ matrix.version }}

sample-pack:
name: Pack sample sources
runs-on: ubuntu-latest
Expand All @@ -66,21 +99,21 @@ jobs:
mv samples/SampleProject.zip release-sample

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: SampleProject
path: "release-sample"

publish:
name: Publish
needs: [plugin-pack, sample-pack]
needs: [merge-plugin-pack, sample-pack]
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Fetch Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: dist
- name: Install hub command
Expand Down
2 changes: 1 addition & 1 deletion AdvancedControlFlow/AdvancedControlFlow.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"VersionName": "1.6.0",
"FriendlyName": "Advanced Control Flow",
"Description": "Blueprint nodes to realize the complex control flow",
"EngineVersion": "5.5.0",
"EngineVersion": "5.6.0",
"Category": "Other",
"CreatedBy": "nutti (Colory Games)",
"CreatedByURL": "https://github.com/colory-games/UEPlugin-AdvancedControlFlow",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ By using this plugin, you can realize this case with only one Multi-Branch node.

This plugin supports on the below environment.

* Unreal Engine Version: 4.26-4.27 / 5.0-5.5
* Unreal Engine Version: 4.26-4.27 / 5.0-5.6
* Development Platforms: Windows / macOS / Linux
* Target Build Platforms: All platforms

Expand Down
2 changes: 1 addition & 1 deletion tools/remove_code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eEu

SUPPORTED_VERSIONS=(
"4.26.0" "4.27.0"
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0"
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0"
)

function usage() {
Expand Down
4 changes: 2 additions & 2 deletions tools/replace_engine_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eEu

SUPPORTED_VERSIONS=(
"4.26.0" "4.27.0"
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0"
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0"
)

function usage() {
Expand All @@ -33,6 +33,6 @@ if [ ${supported} -eq 0 ]; then
fi

for file in `find ${source_dir} -name "*.uplugin"`; do
sed -i -e "s/\"EngineVersion\": \"5.5.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file}
sed -i -e "s/\"EngineVersion\": \"5.6.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file}
echo "Replaced engine version in ${file}"
done