Исправлен мод heroturrets

Добавлен мод blueprint-sandboxes
Добавляет метку версии в zzzparanoidal (#72)
This commit is contained in:
2024-08-16 10:59:02 +03:00
parent b5ed31105c
commit 46d69f3a45
56 changed files with 4537 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
name=$(cat info.json | jq -r .name)
version=$(cat info.json | jq -r .version)
# Create git tag for this version
git tag -f "$version"
mkdir release
# Prepare zip for Factorio native use and mod portal
git archive --prefix "${name}_$version/" \
-o "release/${name}_$version.zip" \
HEAD