Verzeichnis aufgeräumt
All checks were successful
Release Plugin / release (push) Successful in 4s

This commit is contained in:
Michael Otto
2026-03-18 07:28:55 +01:00
parent c7eaa8dd6a
commit d1ec0e9c78
3 changed files with 1 additions and 42 deletions

View File

@@ -1,3 +1,4 @@
- Verzeichniss aufgeräumt
---
Version 22-unstable
- Initiales Release

View File

@@ -1,41 +0,0 @@
@echo off
setlocal enabledelayedexpansion
echo Erstelle einen neuen Release-Tag
echo.
set /p CHANNEL="Kanal eingeben (stable/testing/unstable): "
set /p VERSION="Version eingeben (z.B. 26.3.8): "
if "%CHANNEL%"=="stable" (
set TAG=v%VERSION%
) else if "%CHANNEL%"=="testing" (
set TAG=v%VERSION%-testing
) else if "%CHANNEL%"=="unstable" (
set TAG=v%VERSION%-unstable
) else (
echo Ungueltiger Kanal. Verwende 'stable', 'testing' oder 'unstable'.
pause
exit /b 1
)
echo Erstelle Tag: %TAG%
git tag %TAG%
if %errorlevel% neq 0 (
echo Fehler beim Erstellen des Tags.
pause
exit /b 1
)
echo Pushe Tag: %TAG%
git push origin %TAG%
if %errorlevel% neq 0 (
echo Fehler beim Pushen des Tags.
pause
exit /b 1
)
echo Tag %TAG% erfolgreich erstellt und gepusht.
pause

View File

@@ -1 +0,0 @@
zip_folder=plugin_folder